Live
get_indian_legal_act_metadata
devgan.inGets metadata for a specific Indian legal act from https://devgan.in, including its full name, abbreviation, act header details, and SEO description.
Parameters1
Runs9
Updated10d ago
Operational9 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_indian_legal_act_metadata?
Gets metadata for a specific Indian legal act from https://devgan.in, including its full name, abbreviation, act header details, and SEO description. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass act and get the result back without maintaining a scraper.
Response
{
"full_name": "<string>",
"header_info": {
"text": "<string>",
"year": 0,
"act_number": "<string>"
},
"abbreviation": "<string>",
"seo_meta_description": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/8dffe76b-c43c-445a-8537-cf058a103780/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8dffe76b-c43c-445a-8537-cf058a103780",
"variables": {
"act": "ipc"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="8dffe76b-c43c-445a-8537-cf058a103780") — the "get_indian_legal_act_metadata" function, which gets metadata for a specific Indian legal act from https://devgan.in, including its full name, abbreviation, act header details, and SEO description.. It takes act (str). Return the result as structured JSON.