Marketplace
No threads yet
Live

list_influencer_rankings

hypeauditor.com

Returns paginated global or country-filtered Instagram influencer rankings from https://hypeauditor.com with profile, audience, category, follower, and engagement metrics.

Parameters3
Runs8
Updated3d ago
Operational8 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 list_influencer_rankings?

Returns paginated global or country-filtered Instagram influencer rankings from https://hypeauditor.com with profile, audience, category, follower, and engagement metrics. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit, offset, country and get the result back without maintaining a scraper.

Response

{
  "offset": 0,
  "country": "<string>",
  "influencers": [
    {
      "rank": 0,
      "username": "<string>",
      "full_name": "<string>",
      "social_id": "<string>",
      "avatar_url": "<string>",
      "is_verified": true,
      "profile_url": "<string>",
      "rank_change": 0,
      "thematic_ids": [
        0
      ],
      "thematic_names": [
        "<string>"
      ],
      "subscriber_count": 0,
      "average_engagement": 0,
      "authentic_engagement": 0,
      "top_audience_country_code": "<string>",
      "top_audience_country_name": "<string>",
      "top_audience_country_percent": 0
    }
  ],
  "next_offset": 0,
  "country_slug": "<string>",
  "returned_count": 0,
  "free_tier_limit": 0,
  "requested_limit": 0,
  "maximum_available": 0,
  "has_more_free_results": true,
  "total_ranked_profiles": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/34aaba0a-cc0e-43fb-b718-bfa7ec3bc2cc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "34aaba0a-cc0e-43fb-b718-bfa7ec3bc2cc",
    "variables": {
        "limit": 10,
        "offset": 0,
        "country": ""
    }
}'

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="34aaba0a-cc0e-43fb-b718-bfa7ec3bc2cc") — the "list_influencer_rankings" function, which returns paginated global or country-filtered Instagram influencer rankings from https://hypeauditor.com with profile, audience, category, follower, and engagement metrics..

It takes limit (int), offset (int), country (str). Return the result as structured JSON.