Live
get_documentation_page
halt.afroawi.comRetrieves a complete halt-rate documentation page by slug from https://halt.afroawi.com. Returns its title, description, structured sections, extracted code examples, and full text.
Parameters1
Runs11
Updated10d ago
Operational11 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_documentation_page?
Retrieves a complete halt-rate documentation page by slug from https://halt.afroawi.com. Returns its title, description, structured sections, extracted code examples, and full text. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"slug": "<string>",
"title": "<string>",
"sections": [
{
"level": 0,
"content": "<string>",
"heading": "<string>"
}
],
"full_text": "<string>",
"description": "<string>",
"code_examples": [
{
"code": "<string>",
"section": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/61fcc428-e090-4b84-b57d-ab9f90f22032/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "61fcc428-e090-4b84-b57d-ab9f90f22032",
"variables": {
"slug": "storage/redis"
}
}'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="61fcc428-e090-4b84-b57d-ab9f90f22032") — the "get_documentation_page" function, which retrieves a complete halt-rate documentation page by slug from https://halt.afroawi.com. Returns its title, description, structured sections, extracted code examples, and full text.. It takes slug (str). Return the result as structured JSON.