# Judgments Ecourts — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** Government & Public Data | **Website:** [judgments.ecourts.gov.in/](https://judgments.ecourts.gov.in/) | **Docs:** [parse.bot/marketplace/43a05043-f9cd-4605-8f18-14950d220bd6/judgments-ecourts-gov-in-api](https://parse.bot/marketplace/43a05043-f9cd-4605-8f18-14950d220bd6/judgments-ecourts-gov-in-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-judgments-ecourts-gov-in-api-43a05043/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_judgments

Full-text search across Indian court judgments and orders. Matches keywords against case text. Results are paginated in batches of 10, ordered by most recent judgment date. Internally solves an image captcha per request; due to OCR reliability, requests may occasionally need retrying. Each result includes case title, judge, court, CNR number, dates, and a path to the judgment PDF.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `court_code` | string | No | High Court state code to filter results by state (e.g. 'DEL' for Delhi, 'BOM' for Bombay) |
| `court_type` | string | No | Court type: '1' for Supreme Court, '2' for High Court, '3' for SCR |
| `query` | string | Yes | Search keyword to match against judgment text (e.g. 'CGST', 'property', 'tax') |
| `start` | integer | No | Pagination offset (results returned in batches of 10) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-judgments-ecourts-gov-in-api-43a05043/search_judgments \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"court_code":"<string>","court_type":"<string>","query":"<string>","start":"<integer>"}'
```
