Marketplace
No threads yet
Live

list_act_sections

devgan.in

Returns every section in a legal act from https://devgan.in as a flat list with section numbers, available titles, and detail URLs.

Parameters1
Runs7
Updated3d ago
Operational7 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_act_sections?

Returns every section in a legal act from https://devgan.in as a flat list with section numbers, available titles, and detail URLs. 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

{
  "act": "<string>",
  "count": 0,
  "sections": [
    {
      "url": "<string>",
      "title": "<string>",
      "section_number": "<string>"
    }
  ],
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/cee1f137-4172-4f81-87ca-395bc9dd66b5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "cee1f137-4172-4f81-87ca-395bc9dd66b5",
    "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="cee1f137-4172-4f81-87ca-395bc9dd66b5") — the "list_act_sections" function, which returns every section in a legal act from https://devgan.in as a flat list with section numbers, available titles, and detail URLs..

It takes act (str). Return the result as structured JSON.