search_ngt_judgments_orders
greentribunal.gov.inSearches and lists National Green Tribunal judgments, orders, and case records from https://www.greentribunal.gov.in, ordered by the most recent order date. Searches case titles across a selected NGT bench and returns up to 20 records per page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_ngt_judgments_orders?
Searches and lists National Green Tribunal judgments, orders, and case records from https://www.greentribunal.gov.in, ordered by the most recent order date. Searches case titles across a selected NGT bench and returns up to 20 records per page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass search_term, bench, page, page_size, max_pages and get the result back without maintaining a scraper.
Response
{
"page": 0,
"results": [
{
"bench": "<string>",
"case_title": "<string>",
"order_date": "<string>",
"case_status": "<string>",
"details_url": "<string>",
"diary_number": "<string>",
"case_number_location_code": "<string>"
}
],
"has_more": true,
"page_size": 0,
"search_term": "<string>",
"complete_scan": true,
"pages_scanned": 0,
"selected_bench": "<string>",
"source_total_pages": 0,
"total_results_scanned": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/131a853e-b4e8-48cf-90a8-8b6a29950545/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "131a853e-b4e8-48cf-90a8-8b6a29950545",
"variables": {
"search_term": "environment",
"bench": "principal",
"page": 1,
"page_size": 20,
"max_pages": 100
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="131a853e-b4e8-48cf-90a8-8b6a29950545") — the "search_ngt_judgments_orders" function, which searches and lists National Green Tribunal judgments, orders, and case records from https://www.greentribunal.gov.in, ordered by the most recent order date. Searches case titles across a selected NGT bench and returns up to 20 records per page.. It takes search_term (str), bench (str), page (int), page_size (int), max_pages (int). Return the result as structured JSON.