Marketplace
No threads yet
Live

search_creators

hypeauditor.com

Searches https://hypeauditor.com for creator profiles matching a keyword across Instagram, TikTok, YouTube, and Twitter. Returns up to 15 profiles with all available public search fields, including follower counts and verification status.

Parameters1
Runs12
Updated10d ago
Operational12 runs · 100% 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_creators?

Searches https://hypeauditor.com for creator profiles matching a keyword across Instagram, TikTok, YouTube, and Twitter. Returns up to 15 profiles with all available public search fields, including follower counts and verification status. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.

Response

{
  "query": "<string>",
  "total": 0,
  "profiles": [
    {
      "link": "<string>",
      "type": "<string>",
      "platform": "<string>",
      "username": "<string>",
      "full_name": "<string>",
      "avatar_url": "<string>",
      "is_private": true,
      "is_verified": true,
      "report_state": "<string>",
      "followers_count": 0
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/11ecb343-e900-4064-bff8-bc3b28b05813/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "11ecb343-e900-4064-bff8-bc3b28b05813",
    "variables": {
        "query": "mrbeast"
    }
}'

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="11ecb343-e900-4064-bff8-bc3b28b05813") — the "search_creators" function, which searches https://hypeauditor.com for creator profiles matching a keyword across Instagram, TikTok, YouTube, and Twitter. Returns up to 15 profiles with all available public search fields, including follower counts and verification status..

It takes query (str). Return the result as structured JSON.