search_testbook_content
testbook.comSearches https://testbook.com across exams, courses, test series, tests, free tests, previous year papers, articles, quizzes, videos, and goal cards. Returns source result counts and cleaned result records for every content type.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_testbook_content?
Searches https://testbook.com across exams, courses, test series, tests, free tests, previous year papers, articles, quizzes, videos, and goal cards. Returns source result counts and cleaned result records for every content type. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, language and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"counts": {},
"results": {},
"language": "<string>",
"total_count": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/b3d25d5b-b675-46c8-9e08-bcc64f96cd74/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b3d25d5b-b675-46c8-9e08-bcc64f96cd74",
"variables": {
"query": "SSC",
"language": "English"
}
}'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="b3d25d5b-b675-46c8-9e08-bcc64f96cd74") — the "search_testbook_content" function, which searches https://testbook.com across exams, courses, test series, tests, free tests, previous year papers, articles, quizzes, videos, and goal cards. Returns source result counts and cleaned result records for every content type.. It takes query (str), language (str). Return the result as structured JSON.