Marketplace
No threads yet
Live

search_solidity_documentation_sections

soliditylang.org

Searches Solidity documentation content from https://soliditylang.org and returns one page of matching sections with page paths, highlighted matches, and content blocks.

Parameters6
Runs8
Updated8d ago
Operational8 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_solidity_documentation_sections?

Searches Solidity documentation content from https://soliditylang.org and returns one page of matching sections with page paths, highlighted matches, and content blocks. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, project_slug, doc_version, page, page_size, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "results": [
    {}
  ],
  "version": "<string>",
  "page_size": 0,
  "total_count": 0,
  "project_slug": "<string>",
  "next_page_url": "<string>",
  "returned_count": 0,
  "previous_page_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/284d1443-473a-410c-b2d7-0480c4126bff/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "284d1443-473a-410c-b2d7-0480c4126bff",
    "variables": {
        "query": "storage",
        "project_slug": "solidity",
        "doc_version": "latest",
        "page": "DEFAULT_PAGE",
        "page_size": "DEFAULT_PAGE_SIZE",
        "timeout_seconds": "DEFAULT_TIMEOUT_SECONDS"
    }
}'

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="284d1443-473a-410c-b2d7-0480c4126bff") — the "search_solidity_documentation_sections" function, which searches Solidity documentation content from https://soliditylang.org and returns one page of matching sections with page paths, highlighted matches, and content blocks..

It takes query (str), project_slug (str), doc_version (str), page (int), page_size (int), timeout_seconds (int). Return the result as structured JSON.