Discover/Mondaq API
live

Mondaq APImondaq.com

Access India legal articles from Mondaq via API. Get titles, authors, law firms, topics, summaries, and publication dates from the India browse page.

This API takes change requests — .
Endpoint health
verified 15m ago
list_articles
1/1 passing latest checkself-healing
Endpoints
1
Updated
54m ago

What is the Mondaq API?

The Mondaq India API exposes 1 endpoint — list_articles — that returns structured data for the latest legal articles published on Mondaq's India browse page. Each article object includes 7 fields: title, publication date, contributing law firm, author names, practice area topic, teaser summary, and a direct article URL. Results are ordered most-recent-first and support pagination via page and limit parameters.

This call costs3 credits / call— charged only on success
Try it
Page number for paginating through the article listing.
Number of articles per page (1–50).
api.parse.bot/scraper/412135eb-f86b-473e-acaa-e567086ce0a4/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/412135eb-f86b-473e-acaa-e567086ce0a4/list_articles?page=1&limit=10' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace mondaq-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: mondaq_com_api SDK — bounded, re-runnable; every call capped."""
from parse_apis.mondaq_com_api import MondaqIndia, ParseError

client = MondaqIndia()

# List recent India legal articles — limit caps total items fetched.
for article in client.articles.list(limit=3):
    print(article.title, article.date_published, article.firm)

# Drill-down: take one article for closer inspection.
latest = client.articles.list(limit=1).first()
if latest:
    print(latest.title, latest.topic, latest.summary[:80])
    print("Authors:", latest.authors)
    print("URL:", latest.url)

# Typed error handling around the listing call.
try:
    for article in client.articles.list(limit=2):
        print(article.title, article.firm)
except ParseError as e:
    print(f"error: {e}")

print("exercised: articles.list")
All endpoints · 1 totalmissing one? ·

Retrieves the latest India legal articles from Mondaq's public browse page. Each article includes title, publication date, contributing law firm, author names, practice area/topic, a teaser summary, and the article URL. Articles are ordered most-recent-first. The listing page contains approximately 34 articles; pagination slices through them by page and limit. Each article requires a detail-page fetch for date and author, so response time scales with limit.

Input
ParamTypeDescription
pageintegerPage number for paginating through the article listing.
limitintegerNumber of articles per page (1–50).
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "limit": "articles per page",
    "articles": "array of article objects with title, date_published, firm, authors, topic, summary, url",
    "total_on_page": "total articles available on the source listing page"
  },
  "sample": {
    "data": {
      "page": 1,
      "limit": 3,
      "articles": [
        {
          "url": "https://www.mondaq.com/india/insolvencybankruptcy/1822456/shylockian-lending-is-squeezing-of-blood-nclt-moves-beyond-debt-default-to-reject-a-section-7-application",
          "firm": "Metalegal Advocates",
          "title": "‘Shylockian’ Lending Is ‘Squeezing Of Blood’: NCLT Moves Beyond Debt & Default To Reject A Section 7 Application",
          "topic": "Insolvency",
          "authors": [
            "Srishty  Jaura"
          ],
          "summary": "The National Company Law Tribunal's Kochi Bench examined a lending arrangement involving upfront interest deductions, high effective returns, and multiple post-dated cheques, questioning whether such 'Shylockian' transactions could legitimately invoke insolvency proceedings.",
          "date_published": "2026-07-24T14:18:44"
        }
      ],
      "total_on_page": 34
    },
    "status": "success"
  }
}

About the Mondaq API

What the API Returns

The list_articles endpoint retrieves articles from Mondaq's India legal content listing. Each entry in the articles array carries title, date_published, firm (the contributing law firm), authors (an array of author names), topic (the practice area or subject category), summary (a short teaser), and url (the canonical link to the full article on Mondaq). The response also includes page, limit, and total_on_page for pagination context.

Pagination and Filtering

Two optional input parameters control result volume. page accepts an integer to step through the article listing beyond the first page. limit accepts an integer between 1 and 50 to set how many articles are returned per call. There is no server-side filter by firm, author, or topic — filtering on those fields must be done client-side after fetching.

Coverage Scope

All articles returned are sourced from Mondaq's public India browse page, which aggregates contributions from law firms and legal practitioners covering Indian law. Topics span commercial, regulatory, tax, employment, IP, and other practice areas. Articles are ordered by recency, so the freshest content surfaces at the top of page 1.

Reliability & maintenanceVerified

The Mondaq API is a managed, monitored endpoint for mondaq.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when mondaq.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official mondaq.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
15m ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor new Indian legal developments by polling list_articles for articles published after a given date_published.
  • Aggregate law firm publishing activity by grouping returned firm values to track which firms are most active on Mondaq India.
  • Build a legal topic feed by filtering the topic field client-side to surface only tax or IP articles.
  • Index Mondaq India articles into a search engine using the url, title, and summary fields for each result.
  • Track author publication frequency by collecting authors across paginated calls and counting occurrences.
  • Populate a legal newsletter digest with title, firm, summary, and url fields from the latest page of results.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Mondaq have an official developer API?+
Mondaq does not publish a documented public developer API. There is no official API key or developer portal listed on mondaq.com as of mid-2025.
What does `list_articles` return for each article?+
Each article object includes title, date_published, firm (the contributing law firm name), authors (array), topic (practice area), summary (short teaser text), and url (the full Mondaq article link). The endpoint does not return the full article body text.
Can I filter articles by topic or law firm directly in the API request?+
The list_articles endpoint accepts only page and limit as input parameters. There are no server-side filters for topic, firm, or authors. You need to filter those fields from the response array in your own code.
Does this API cover Mondaq content from countries other than India?+
Not currently. The API covers the India browse page only, returning articles scoped to Indian legal content. You can fork this API on Parse and revise it to point at other country browse pages such as the US, UK, or Australia.
Is full article body text available through this API?+
Not currently. The API returns a teaser summary field, not the complete article body. The url field links to the full article on Mondaq for manual reading. You can fork this API on Parse and revise it to add a detail endpoint that fetches full article content.
Page content last updated . Spec covers 1 endpoint from mondaq.com.
Related APIs in News MediaSee all →
barandbench.com API
Stay updated with India's latest legal news and court developments by accessing real-time articles from Bar and Bench's comprehensive legal journalism platform. Get timely insights on judiciary decisions, legal policy changes, and important case updates directly from one of India's most trusted sources for legal information.
indiankanoon.org API
indiankanoon.org API
livelaw.in API
Access Supreme Court and High Court judgments, legal news, articles, and digests from LiveLaw.in, with the ability to filter by year, category, and author. Stay updated on the latest legal developments, court decisions, and expert legal analysis across Indian courts.
lawyers.com API
Search and discover lawyers and law firms with detailed profiles, client reviews, and practice area information. Find legal articles and featured firms by specialty to help you locate the right legal representation for your needs.
ecourtsindia.com API
Search and retrieve detailed information about court cases across India's Supreme Court, High Courts, and District Courts from a database of over 239 million cases. Find case details, track legal proceedings, and access comprehensive court records to stay informed about judicial matters across the Indian court system.
scconline.com API
Retrieve the latest Indian legal news, case analyses, and legislation updates from the SCC Online Blog, with posts organized by date for easy browsing. Paginate through recent content to stay informed on legal developments and court decisions.
egazette.nic.in API
Access official Indian gazette publications including recent Extraordinary and Weekly gazettes, browse them by category, and explore the complete directory of available documents. Quickly find and retrieve the latest government publications all in one place.
reuters.com API
Access data from reuters.com.