Live
get_chapter_text
ranobes.topReturns complete chapter text and chapter metadata from https://ranobes.top for a chapter_id obtained from the Ranobes chapter listing.
Parameters1
Runs8
Updated1d ago
Degraded8 runs · 75% 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_chapter_text?
Returns complete chapter text and chapter metadata from https://ranobes.top for a chapter_id obtained from the Ranobes chapter listing. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass chapter_id and get the result back without maintaining a scraper.
Response
{
"book_id": 0,
"full_text": "<string>",
"novel_url": "<string>",
"chapter_id": 0,
"paragraphs": [
"<string>"
],
"direct_link": "<string>",
"novel_title": "<string>",
"chapter_title": "<string>",
"language_code": "<string>",
"paragraph_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/22bbfbaf-eaca-43de-93a0-0214a863c842/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "22bbfbaf-eaca-43de-93a0-0214a863c842",
"variables": {
"chapter_id": 3245006
}
}'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="22bbfbaf-eaca-43de-93a0-0214a863c842") — the "get_chapter_text" function, which returns complete chapter text and chapter metadata from https://ranobes.top for a chapter_id obtained from the Ranobes chapter listing.. It takes chapter_id (int). Return the result as structured JSON.