Live
search_endorsed_brands
bookingagentinfo.comSearches endorsed brands on https://bookingagentinfo.com and returns paginated, non-empty Typesense brand records with all source fields.
Parameters3
Runs6
Updated1d ago
Degraded6 runs · 66.6% 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_endorsed_brands?
Searches endorsed brands on https://bookingagentinfo.com and returns paginated, non-empty Typesense brand records with all source fields. 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/976a5db8-c194-4e69-91b5-905ea0f67649/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "976a5db8-c194-4e69-91b5-905ea0f67649",
"variables": {
"query": "Nike",
"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="976a5db8-c194-4e69-91b5-905ea0f67649") — the "search_endorsed_brands" function, which searches endorsed brands on https://bookingagentinfo.com and returns paginated, non-empty Typesense brand records with all source fields.. It takes query (str), page (int), per_page (int). Return the result as structured JSON.