search_pages
mixesdb.comRuns relevance-ordered full-text search across MixesDB mix pages at https://www.mixesdb.com, returning page titles, clean snippets, URLs, source metadata, pagination, and total hit counts.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_pages?
Runs relevance-ordered full-text search across MixesDB mix pages at https://www.mixesdb.com, returning page titles, clean snippets, URLs, source metadata, pagination, and total hit counts. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit, offset and get the result back without maintaining a scraper.
Response
{
"limit": 0,
"query": "<string>",
"offset": 0,
"results": [
{
"page_id": 0,
"snippet": "<string>",
"page_url": "<string>",
"page_title": "<string>",
"word_count": 0,
"match_flags": {},
"namespace_id": 0,
"last_modified": "<string>",
"matched_fields": {},
"relevance_rank": 0,
"page_size_bytes": 0
}
],
"has_more": true,
"next_offset": 0,
"result_count": 0,
"search_metadata": {},
"total_hit_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/895e3195-de11-42a0-8b0f-f1dc90a42112/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "895e3195-de11-42a0-8b0f-f1dc90a42112",
"variables": {
"query": "Essential Mix",
"limit": 10,
"offset": 0
}
}'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="895e3195-de11-42a0-8b0f-f1dc90a42112") — the "search_pages" function, which runs relevance-ordered full-text search across MixesDB mix pages at https://www.mixesdb.com, returning page titles, clean snippets, URLs, source metadata, pagination, and total hit counts.. It takes query (str), limit (int), offset (int). Return the result as structured JSON.