list_novels
ranobes.topBrowses novels from https://ranobes.top with genre, translation status, and sort filters, returning cover, ratings, genres, status, summaries, activity, and direct links across pages.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_novels?
Browses novels from https://ranobes.top with genre, translation status, and sort filters, returning cover, ratings, genres, status, summaries, activity, and direct links across pages. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass genre, status, sort_order, max_pages and get the result back without maintaining a scraper.
Response
{
"genre": "<string>",
"novels": [
{}
],
"status": "<string>",
"has_more": true,
"per_page": 0,
"sort_order": "<string>",
"next_page_url": "<string>",
"pages_fetched": 0,
"total_returned": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/7c5d539f-9afd-4b41-aa7e-062e01a2c490/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7c5d539f-9afd-4b41-aa7e-062e01a2c490",
"variables": {
"genre": "",
"status": "",
"sort_order": "default",
"max_pages": 1
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="7c5d539f-9afd-4b41-aa7e-062e01a2c490") — the "list_novels" function, which browses novels from https://ranobes.top with genre, translation status, and sort filters, returning cover, ratings, genres, status, summaries, activity, and direct links across pages.. It takes genre (str), status (str), sort_order (str), max_pages (int). Return the result as structured JSON.