# Greentribunal — 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 and retrieve the latest environmental court judgments, orders, and case information from India's National Green Tribunal to stay informed on green litigation and regulatory decisions. Access comprehensive NGT case data to track environmental rulings and legal precedents in real-time.

**Category:** Government & Public Data | **Website:** [www.greentribunal.gov.in/](https://www.greentribunal.gov.in/) | **Docs:** [parse.bot/marketplace/7019c0c9-fc6d-4d7c-ac92-2c28b2cf7c80/greentribunal-gov-in-api](https://parse.bot/marketplace/7019c0c9-fc6d-4d7c-ac92-2c28b2cf7c80/greentribunal-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-greentribunal-gov-in-api-7019c0c9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_orders

Search and list latest judgments and orders from the NGT case status system. Results are ordered by most recent order date first, returning up to 20 items per page. Searches case titles using the provided search term across the selected bench. The search covers all case types including Original Applications, IAs, Appeals, and Execution Applications.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `bench` | string | No | NGT bench/zone to search. |
| `page` | integer | No | Page number for pagination (1-based). |
| `search_term` | string | No | Free text keyword to search in case titles. Use 'vs' to match virtually all cases (as most titles contain 'Applicant VS Respondent'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-greentribunal-gov-in-api-7019c0c9/list_orders \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"bench":"<string>","page":"<integer>","search_term":"<string>"}'
```
