Live
get_section_cross_references
devgan.inReturns IPC and BNS equivalent-section links found in a section description on https://devgan.in, including target act codes, section numbers, link text, and URLs.
Parameters2
Runs7
Updated3d ago
Operational7 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_section_cross_references?
Returns IPC and BNS equivalent-section links found in a section description on https://devgan.in, including target act codes, section numbers, link text, and URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass act, section_number and get the result back without maintaining a scraper.
Response
{
"act_code": "<string>",
"source_url": "<string>",
"section_number": "<string>",
"cross_references": [
{
"url": "<string>",
"text": "<string>",
"act_code": "<string>",
"section_number": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/d16d24c8-1c33-4f12-a715-f60a1da14f48/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d16d24c8-1c33-4f12-a715-f60a1da14f48",
"variables": {
"act": "bns",
"section_number": "103"
}
}'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="d16d24c8-1c33-4f12-a715-f60a1da14f48") — the "get_section_cross_references" function, which returns IPC and BNS equivalent-section links found in a section description on https://devgan.in, including target act codes, section numbers, link text, and URLs.. It takes act (str), section_number (str). Return the result as structured JSON.