Marketplace
No threads yet
Live

search_celebrities

bookingagentinfo.com

Searches the celebrity Typesense index on https://bookingagentinfo.com and returns paginated profile records with names, slugs, categories, nicknames, images, links, and biography details. Use query='*' to browse all celebrities.

Parameters3
Runs15
Updated10d ago
Degraded15 runs · 73.3% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_celebrities?

Searches the celebrity Typesense index on https://bookingagentinfo.com and returns paginated profile records with names, slugs, categories, nicknames, images, links, and biography details. Use query='*' to browse all celebrities. 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>",
  "results": [
    {}
  ],
  "per_page": 0,
  "total_pages": 0,
  "search_time_ms": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/74476f27-0c01-42f5-af42-264ece743598/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "74476f27-0c01-42f5-af42-264ece743598",
    "variables": {
        "query": "*",
        "page": 1,
        "per_page": 20
    }
}'

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="74476f27-0c01-42f5-af42-264ece743598") — the "search_celebrities" function, which searches the celebrity Typesense index on https://bookingagentinfo.com and returns paginated profile records with names, slugs, categories, nicknames, images, links, and biography details. Use query='*' to browse all celebrities..

It takes query (str), page (int), per_page (int). Return the result as structured JSON.