Influencer Search API

Public, read-only search over ViralMango's 450M+ influencer profile database. The same endpoint that powers the homepage autocomplete — open for agents and integrations, no authentication required.

Machine-readable discovery: OpenAPI 3.1 spec · API catalog (RFC 9727) · MCP server card

Search influencers

POST https://panel.viralmango.com/api/s/search?q={query}&platform={platform}

Query parameters

NameRequiredDescription
qYesInfluencer name or @username (URL-encoded).
platformNoinstagram (default), tiktok, or youtube.

Example

curl -X POST "https://panel.viralmango.com/api/s/search?q=cristiano&platform=instagram"

Response 200 application/json

{
  "search": [
    {
      "user_id": "173560420",
      "username": "cristiano",
      "fullname": "Cristiano Ronaldo",
      "picture": "https://.../cristiano.jpg",
      "followers": 665000000,
      "is_verified": true
    }
  ]
}

Audience-quality report

For any returned username, the full fake-follower / engagement report is at:

https://panel.viralmango.com/s/report?generate=1&platform={platform}&username={username}

Use it from an AI agent

This API is exposed three ways for autonomous agents:

Read-only and public. Please rate-limit politely — this serves a live product.