list_celebrity_directory_by_letter
bookingagentinfo.comBrowses the celebrity directory on https://bookingagentinfo.com by first letter and page. It returns each visible celebrity's name, slug, category, image, profile link, and biography preview when the directory provides them.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_celebrity_directory_by_letter?
Browses the celebrity directory on https://bookingagentinfo.com by first letter and page. It returns each visible celebrity's name, slug, category, image, profile link, and biography preview when the directory provides them. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass letter, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"letter": "<string>",
"results": [
{}
],
"has_next": true,
"next_page": 0,
"source_url": "<string>",
"has_previous": true,
"result_count": 0,
"previous_page": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/96c0a21d-7e1d-4522-b2eb-bf4001104586/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "96c0a21d-7e1d-4522-b2eb-bf4001104586",
"variables": {
"letter": "A",
"page": 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="96c0a21d-7e1d-4522-b2eb-bf4001104586") — the "list_celebrity_directory_by_letter" function, which browses the celebrity directory on https://bookingagentinfo.com by first letter and page. It returns each visible celebrity's name, slug, category, image, profile link, and biography preview when the directory provides them.. It takes letter (str), page (int). Return the result as structured JSON.