Search API

Influencer Search API

Search and filter influencers using structured parameters like category, followers, engagement rate, and platform. Part of the Influencify influencer discovery system.

POST /search/newv1/

1Influencer discovery API

Returns influencer profiles from a structured creator database based on niche, engagement, and audience size filters—designed for production discovery pipelines, not manual research.

2Use this endpoint when you want to

  • Find influencers in a specific niche
  • Filter creators by engagement rate
  • Build search features in your product
  • Rank influencers by performance

3How influencer search works

  1. Query influencer dataset using filters (niche, followers, engagement rate, platform)
  2. System searches structured creator database
  3. Results are ranked and returned as JSON
  4. Developers use data in apps, dashboards, or automation flows

4Returned data includes

  • Influencer identity
  • Engagement metrics
  • Platform information
  • Category data
  • Audience signals (if available)
{
  "id": "creator_123",
  "username": "fitness.creator",
  "followers": 128400,
  "engagement_rate": 3.9,
  "category": "fitness",
  "platform": "instagram"
}

Quick integration

Integrate in Minutes

import requests

url = "https://socapi.icu/v2.0/api/reports/new/"
headers = {
    "X-Api-Key": "YOUR_API_KEY",
    "Content-Type": "application/json",
}
payload = {
    "username": "creator_handle",
    "platform": "instagram",
}

response = requests.post(url, json=payload, headers=headers)
print(response.json())
10/s

Standard rate limit

100/s

Raw TT/YT endpoints

400M+

Creator profiles

Influencer Search API

This endpoint is part of the influencer discovery system and allows developers to search creators using structured filters like category, follower count, engagement rate, and platform.

Use this endpoint to:

  • Build influencer search tools
  • Power SaaS discovery engines
  • Filter and rank creators for campaigns

← Back to Influencer Marketing API overview

Interactive API reference

Request/response schemas from our OpenAPI spec — hosted on influencify.co (no external iframe).

View full API →

Loading API reference…