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

> Access recent orders from India's Customs, Excise and Service Tax Appellate Tribunal (CESTAT) with complete case details, party names, bench information, dates, and direct PDF links to both daily/interim and final rulings. Stay updated on tribunal decisions relevant to customs, excise, and service tax appeals without manually searching multiple sources.

**Category:** Government & Public Data | **Website:** [www.cestat.gov.in/](https://www.cestat.gov.in/) | **Docs:** [parse.bot/marketplace/02ea8d29-7ce5-413f-8a44-790d5d2d5647/cestat-gov-in-api](https://parse.bot/marketplace/02ea8d29-7ce5-413f-8a44-790d5d2d5647/cestat-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-cestat-gov-in-api-02ea8d29/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_daily_orders

Retrieve recent daily, miscellaneous, and interim orders from a specified CESTAT bench. Orders are from the last 7 days, sorted most-recent first. Results are paginated server-side.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `bench` | string | No | CESTAT bench location. |
| `page` | integer | No | Page number for paginated results. |
| `page_size` | integer | No | Number of orders per page (1–100). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cestat-gov-in-api-02ea8d29/list_daily_orders \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"bench":"<string>","page":"<integer>","page_size":"<integer>"}'
```

### list_final_orders

Retrieve recent final orders from a specified CESTAT bench. Orders are from the last 7 days, sorted most-recent first. Results are paginated server-side.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `bench` | string | No | CESTAT bench location. |
| `page` | integer | No | Page number for paginated results. |
| `page_size` | integer | No | Number of orders per page (1–100). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cestat-gov-in-api-02ea8d29/list_final_orders \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"bench":"<string>","page":"<integer>","page_size":"<integer>"}'
```
