---
name: influencer-search
description: Search ViralMango's influencer database (Instagram, TikTok, YouTube) by name or @username and retrieve audience-quality / fake-follower report links.
version: 1.0.0
homepage: https://analytics.viralmango.com
---

# ViralMango — Influencer Search & Fake-Follower Check

This skill lets an AI agent look up social-media influencers in ViralMango's
450M+ profile database and obtain a deep link to each creator's audience-quality
(fake-follower / engagement) report.

## When to use

Use this skill to vet a creator before a brand partnership: resolve a name or
@username to a profile, read follower count + verification status, and hand the
user a report link that breaks down real vs. fake audience.

## Capability: search_influencer

Search by name or @username on a given platform.

### Request

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

- `q` (required) — influencer name or @username, URL-encoded.
- `platform` (optional) — `instagram` (default), `tiktok`, or `youtube`.

No authentication required. This is the same public endpoint the
analytics.viralmango.com homepage autocomplete uses.

### Response

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

### Report deep-link

For any returned `username`, the full audience-quality report is at:

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

## Programmatic discovery

- OpenAPI spec: https://analytics.viralmango.com/.well-known/openapi.json
- API catalog: https://analytics.viralmango.com/.well-known/api-catalog
- MCP server (Streamable HTTP): https://mcp.viralmango.com/mcp (tool: `search_influencer`)

## Notes

- Read-only, public, unauthenticated.
- Rate-limit politely; this powers a live product surface.
