Discover/eCourtsIndia API
live

eCourtsIndia APIecourtsindia.com

Search 239M+ Indian court cases and retrieve case details, hearing history, judgments, and orders from Supreme Court, High Courts, and District Courts.

This API takes change requests — .
Endpoint health
monitored
search_cases
get_case_detail
get_high_court_judgments
0/3 passing latest checkself-healing
Endpoints
3
Updated
1mo ago

What is the eCourtsIndia API?

The eCourtsIndia API provides access to over 239 million Indian court cases across three endpoints: search_cases for full-text search by party name, case number, or legal term; get_case_detail for complete case records by CNR; and get_high_court_judgments for filtered judgment and order documents from High Courts. Each search result returns a CNR identifier that links directly into the detail and judgment endpoints.

This call costs2 credits / call— charged only on success
Try it
Page number (1-indexed)
Search query — party name, case number, offense keyword, or legal term (e.g. 'murder', 'land dispute', 'State vs Kumar')
api.parse.bot/scraper/dba279e1-d9cb-4165-bcca-233d98085095/<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/dba279e1-d9cb-4165-bcca-233d98085095/search_cases?page=1&query=murder' \
  -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 ecourtsindia-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: eCourtsIndia SDK — bounded, re-runnable; every call capped."""
from parse_apis.eCourtsIndia_Case_Search_API import ECourtsIndia, Query, CaseNotFound

client = ECourtsIndia()

# Search High Court judgments and orders for a keyword
for doc in client.high_court_documents.search(query=Query.MURDER, court="Kerala", limit=3):
    print(doc.cnr, doc.case_title, doc.doc_type, doc.doc_date, doc.court_name)

# Search general cases
for case_summary in client.case_summaries.search(query=Query.LAND_DISPUTE, limit=3):
    print(case_summary.cnr, case_summary.case_title, case_summary.case_status)

# Get full detail for a specific case via the navigation op
item = client.case_summaries.search(query=Query.MURDER, limit=1).first()
try:
    detail = item.details()
    print(detail.case_title, detail.case_status, detail.hearing_count)
    for order in detail.judgment_orders:
        print(order.order_date, order.order_type)
except CaseNotFound as e:
    print("case gone:", e.cnr)

print("exercised: high_court_documents.search, case_summaries.search, CaseSummary.details")
All endpoints · 3 totalmissing one? ·

Full-text search across Indian court cases. Matches party names, case numbers, offenses, and legal terms. Returns 20 case summaries per page with pagination metadata. Each CaseSummary carries a CNR suitable for point-lookup via get_case_detail.

Input
ParamTypeDescription
pageintegerPage number (1-indexed)
queryrequiredstringSearch query — party name, case number, offense keyword, or legal term (e.g. 'murder', 'land dispute', 'State vs Kumar')
Response
{
  "type": "object",
  "fields": {
    "cases": "array of CaseSummary objects",
    "query": "string - the search query echoed back",
    "page_size": "integer - results per page (20)",
    "total_hits": "integer - total matching cases",
    "total_pages": "integer - total pages available",
    "current_page": "integer - current page number",
    "has_next_page": "boolean",
    "has_previous_page": "boolean"
  },
  "sample": {
    "data": {
      "cases": [
        {
          "cnr": "UPAL010095512024",
          "judges": "Addl. District Judge Court No. 06",
          "case_type": "SC",
          "bench_type": "",
          "case_title": "State Government vs Kumari Kamlesh",
          "court_code": "UPAL01",
          "court_name": "District & Sessions Judge, Aligarh, Uttar Pradesh",
          "case_status": "PENDING",
          "filing_date": "2024-08-28",
          "petitioners": "State Government",
          "respondents": "Kumari Kamlesh",
          "case_category": "INDIAN PENAL CODE - Punishment for culpable homicide not amounting to murder-304",
          "decision_date": null,
          "filing_number": "8422/2024",
          "judicial_section": "",
          "acts_and_sections": "",
          "next_hearing_date": "2026-03-16",
          "registration_date": "2024-08-29",
          "registration_number": "1917/2024",
          "petitioner_advocates": "",
          "respondent_advocates": ""
        }
      ],
      "query": "murder",
      "page_size": 20,
      "total_hits": 138829,
      "total_pages": 6942,
      "current_page": 1,
      "has_next_page": true,
      "has_previous_page": false
    },
    "status": "success"
  }
}

About the eCourtsIndia API

Case Search and Lookup

The search_cases endpoint accepts a query string and an optional page integer, returning up to 20 CaseSummary objects per page alongside total_hits, total_pages, and has_next_page for pagination. Query strings can include party names, case numbers, offense keywords such as murder or land dispute, or general legal terms. Each summary includes a cnr field — the Case Number Record — which is the key identifier for point-level lookups.

Case Detail Records

Passing a cnr to get_case_detail returns a structured record covering case_title (formatted as Petitioner vs Respondent), judges, court_name, district, case_type, bench_type, purpose, and state. The same endpoint surfaces full hearing history, interlocutory applications, judgment orders, FIR information, and a complete case timeline. CNRs follow a consistent format such as KLHC010203672022 (Kerala High Court) or SCIN010425532018 (Supreme Court).

High Court Judgments

The get_high_court_judgments endpoint filters results to High Court cases that carry attached judgment or order documents. It accepts query, court (partial match on names like Kerala, Bombay, or Delhi), doc_type, and date-range parameters from_date and to_date in ISO YYYY-MM-DD format. Each returned document object includes cnr, case_title, court_name, doc_type, doc_date, judgment_url, petitioners, and respondents. The court_filter and doc_type_filter fields in the response confirm which filters were applied.

Coverage Notes

The database covers the Supreme Court of India, all High Courts, and District Courts. The state field in case detail records reflects the court's state jurisdiction. Pagination across all three endpoints is 1-indexed. For High Court judgments, total_hits reflects the broader search count before High Court filtering is applied, so the number of returned documents per page may be lower than page_size.

Reliability & maintenance

The eCourtsIndia API is a managed, monitored endpoint for ecourtsindia.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ecourtsindia.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 ecourtsindia.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.

Latest check
0/3 endpoints 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
  • Track the status and hearing schedule of a specific case using its CNR via get_case_detail
  • Research all cases involving a named party or legal entity using search_cases with a party name query
  • Pull Kerala or Bombay High Court judgments within a date range using get_high_court_judgments with court and from_date/to_date filters
  • Aggregate FIR-linked criminal cases by querying offense keywords such as 'IPC 302' through search_cases
  • Build a case-monitoring dashboard that polls get_case_detail for updated purpose and hearing history fields
  • Compile judgment documents for a specific doc_type across multiple High Courts for legal research
  • Identify all land dispute cases in a district by querying 'land dispute' combined with pagination across total_pages
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does eCourtsIndia have an official developer API?+
eCourtsIndia (https://ecourtsindia.gov.in) does not offer a documented public REST API for programmatic case access. This Parse API provides structured access to the same case data through its three endpoints.
What does get_case_detail return beyond basic case information?+
Beyond identity fields like case_title, court_name, and judges, get_case_detail returns the full hearing history, interlocutory applications, judgment orders, FIR information, and the complete case timeline. The bench_type and purpose fields capture the current posture of the case.
How does the court filter work in get_high_court_judgments, and which courts are supported?+
The court parameter accepts a partial name string — for example, 'Kerala', 'Bombay', 'Delhi', 'Karnataka', or 'Allahabad' — and matches against High Court names. The response echoes the applied filter in the court_filter field. If the parameter is omitted, results span all High Courts. The response total_hits reflects the pre-filter search count, not the post-filter document count.
Does the API expose District Court judgments or only High Court judgments?+
Currently, the get_high_court_judgments endpoint covers only High Court judgment and order documents. District Court case records are accessible through search_cases and get_case_detail, but attached judgment documents at the District Court level are not returned. You can fork this API on Parse and revise it to add a dedicated District Court judgments endpoint.
Are there any gaps in the case fields returned by get_case_detail?+
The endpoint does not return advocate names or contact details for parties. It covers case metadata, hearing history, FIR details, and orders. If advocate information is needed, you can fork this API on Parse and revise the endpoint to include those fields.
Page content last updated . Spec covers 3 endpoints from ecourtsindia.com.
Related APIs in Government PublicSee all →
judgments.ecourts.gov.in API
Search for Indian court judgments and orders across multiple courts to access legal rulings, case decisions, and judicial orders. Find relevant court cases by searching through a comprehensive database of Indian judicial decisions.
indiankanoon.org API
Search and access Indian court judgments, laws, and tribunal decisions to find relevant legal documents and case law. Browse legal documents by court, year, and month, or get real-time suggestions and recent rulings to support your legal research.
indocourtatlas.com API
Search and browse judicial records, legal decisions, and court cases from courts throughout Indonesia to find relevant case information and rulings. Access comprehensive Indonesian court data through simple search and browsing capabilities to research legal precedents and case outcomes.
bailii.org API
Search and retrieve court judgments and case law from British and Irish courts across multiple jurisdictions, with filtering by date range and location. Access complete case details including full judgment text and metadata to research legal precedents and decisions.
judyrecords.com API
Search and retrieve detailed court records including case information and statistics from a comprehensive legal database. Access specific case details and view aggregated court record stats to research legal proceedings and case outcomes.
law.justia.com API
Search federal court dockets and retrieve detailed case filings to stay informed about ongoing litigation, track case outcomes, and access official court documents. Find specific cases by keywords or case identifiers to monitor legal proceedings relevant to your interests or research.
oscn.net API
Search Oklahoma State Court Network records across 80+ counties to find cases, review detailed docket information, and track daily court filings. Quickly look up case details by county and district court type to stay informed on legal proceedings and filing activity.
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.