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

> Check the GST Appellate Tribunal's daily cause list to find scheduled hearings across different benches and locations. Look up specific courts at each location and plan your appearances accordingly.

**Category:** Government & Public Data | **Website:** [www.gstat.gov.in/cause-list](https://www.gstat.gov.in/cause-list) | **Docs:** [parse.bot/marketplace/cb0b540d-b2a3-4492-b3c5-c053ee99b189/gstat-gov-in-api](https://parse.bot/marketplace/cb0b540d-b2a3-4492-b3c5-c053ee99b189/gstat-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-gstat-gov-in-api-cb0b540d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_cause_list

Returns the daily cause list (scheduled hearings) for a specific location, court, and date. Each record includes case number, filing number, parties, hearing purpose, time, quorum, and representative details. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `court_id` | string | Yes | Numeric court ID from get_courts. |
| `date` | string | Yes | Hearing date in ISO format YYYY-MM-DD. |
| `limit` | integer | No | Number of records per page. |
| `location_id` | string | Yes | Numeric location ID from list_locations. |
| `page` | integer | No | Page number for server-side pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gstat-gov-in-api-cb0b540d/get_cause_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"court_id":"<string>","date":"<string>","limit":"<integer>","location_id":"<string>","page":"<integer>"}'
```

### get_courts

Returns the courts available at a given GSTAT location. Court IDs are used as input to get_cause_list. The number of courts varies by location (typically 1–5 plus a Registrar Court).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location_id` | string | Yes | Numeric location ID from list_locations (e.g. '1' for Delhi PB, '21' for Mumbai). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gstat-gov-in-api-cb0b540d/get_courts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location_id":"<string>"}'
```

### list_locations

Returns all GSTAT bench locations with their numeric IDs. These IDs are used as input to get_courts and get_cause_list. The list is stable (44 benches across India) and changes only when new benches are constituted.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gstat-gov-in-api-cb0b540d/list_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
