Marketplace
No threads yet
Live

search_section_by_number

devgan.in

Searches sections by exact number across legal acts on https://devgan.in and returns full matching records with text, links, and available classifications.

Parameters2
Runs6
Updated3d ago
Operational6 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 search_section_by_number?

Searches sections by exact number across legal acts on https://devgan.in and returns full matching records with text, links, and available classifications. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass section_number, act and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "matches": [
    {
      "title": "<string>",
      "chapter": "<string>",
      "act_code": "<string>",
      "act_name": "<string>",
      "source_url": "<string>",
      "composition": "<string>",
      "classification": {
        "bail": "<string>",
        "entries": [
          {
            "punishment": "<string>",
            "offence_type": "<string>"
          }
        ],
        "framework": "<string>",
        "cognizance": "<string>",
        "triable_by": "<string>"
      },
      "section_number": "<string>",
      "cross_references": [
        {
          "url": "<string>",
          "text": "<string>",
          "act_code": "<string>",
          "section_number": "<string>"
        }
      ],
      "description_html": "<string>",
      "description_text": "<string>",
      "navigation_links": [
        {
          "url": "<string>",
          "label": "<string>",
          "section_number": "<string>"
        }
      ]
    }
  ],
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/cad86fb4-68c5-4a21-9bc1-3d7fc9be2df2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "cad86fb4-68c5-4a21-9bc1-3d7fc9be2df2",
    "variables": {
        "section_number": "302",
        "act": "all"
    }
}'

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="cad86fb4-68c5-4a21-9bc1-3d7fc9be2df2") — the "search_section_by_number" function, which searches sections by exact number across legal acts on https://devgan.in and returns full matching records with text, links, and available classifications..

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