# Nclat — 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.

> Look up recent judgments and orders from India's National Company Law Appellate Tribunal across its Principal Bench in New Delhi and Chennai Bench locations. Stay informed on the latest appellate decisions affecting company law matters in India.

**Category:** Government & Public Data | **Website:** [nclat.nic.in/](https://nclat.nic.in/) | **Docs:** [parse.bot/marketplace/8df96449-ab7a-466a-aeb2-34e94034cb96/nclat-nic-in-api](https://parse.bot/marketplace/8df96449-ab7a-466a-aeb2-34e94034cb96/nclat-nic-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-nclat-nic-in-api-8df96449/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_judgments

Retrieve recent NCLAT judgments and final orders from the last 14 days, sorted most-recent-first. Each item includes case title with party names, case number, order date, bench location, coram (bench composition), and a PDF reference URL. Results are paginated client-side from a single upstream fetch of the rolling 14-day window.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | NCLAT bench location. |
| `page` | integer | No | Page number for client-side pagination over the 14-day result set. |
| `page_size` | integer | No | Number of items per page (1–50). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nclat-nic-in-api-8df96449/list_judgments \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","page":"<integer>","page_size":"<integer>"}'
```
