Live
search_representatives
bookingagentinfo.comSearches representatives by keyword on https://bookingagentinfo.com and returns paginated, non-empty Typesense profile records for agents, managers, and publicists.
Parameters3
Runs7
Updated1d ago
Degraded7 runs · 71.4% 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 search_representatives?
Searches representatives by keyword on https://bookingagentinfo.com and returns paginated, non-empty Typesense profile records for agents, managers, and publicists. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, per_page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"found": 0,
"query": "<string>",
"out_of": 0,
"per_page": 0,
"search_cutoff": true,
"search_time_ms": 0,
"representatives": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/23c6d1e1-12c3-4dcb-9798-07e291a674af/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "23c6d1e1-12c3-4dcb-9798-07e291a674af",
"variables": {
"query": "David",
"page": 1,
"per_page": 10
}
}'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="23c6d1e1-12c3-4dcb-9798-07e291a674af") — the "search_representatives" function, which searches representatives by keyword on https://bookingagentinfo.com and returns paginated, non-empty Typesense profile records for agents, managers, and publicists.. It takes query (str), page (int), per_page (int). Return the result as structured JSON.