Skip to main content
Influship API

Discover the Perfect Influencers

Find, analyze, and match influencers at scale with AI-powered search and comprehensive analytics. Built for developers, marketers, and platforms.

What Can You Build?

Influencer Discovery Tools

Build powerful search experiences with natural language queries and AI recommendations

Campaign Management Platforms

Match creators to campaigns, analyze brand safety, and track performance

Creator Marketplaces

Create platforms that connect brands with the right influencers

Analytics Dashboards

Deep-dive into creator metrics, engagement patterns, and audience insights

Core Features

Find influencers using natural language. Our AI understands context, intent, and nuance to deliver highly relevant results.
curl -X POST https://api.influship.com/v1/search \
  -H "X-API-Key: YOUR_KEY" \
  -d '{
    "query": "sustainable fashion creators with engaged audiences in the US"
  }'
Returns creators with:
  • AI relevance scores and explanations
  • Comprehensive profile data
  • Real engagement metrics
  • Platform-specific analytics

πŸ‘₯ Lookalike Discovery

Find creators similar to your top performers. Perfect for expanding campaigns and discovering new talent.
curl -X POST https://api.influship.com/v1/lookalike \
  -H "X-API-Key: YOUR_KEY" \
  -d '{
    "seeds": [
      {"platform": "instagram", "username": "topCreator"}
    ]
  }'
Matches based on:
  • Content style and topics
  • Audience demographics
  • Engagement patterns
  • Platform behavior

πŸ“Š Comprehensive Analytics

Access detailed metrics across platforms with both lite and detailed data modes. Available Metrics:
  • Follower counts and growth
  • Engagement rates (likes, comments, shares)
  • Posting frequency and patterns
  • Audience demographics
  • Content topics and themes
  • Verification status

πŸ›‘οΈ Brand Safety Analysis

Ensure creators align with your brand values through automated safety checks.
curl -X POST https://api.influship.com/v1/brand-safety/creators \
  -H "X-API-Key: YOUR_KEY" \
  -d '{"creator_ids": ["..."]}'
Analyzes:
  • Content appropriateness
  • Past controversies
  • Brand alignment
  • Risk assessment

Platform Coverage

Instagram

βœ… Fully Supported

TikTok

🚧 Partial Support

YouTube

πŸ”œ Coming Soon

Get Started in Minutes

1

Get Your API Key

Contact [email protected] for instant access
2

Make Your First Request

curl https://api.influship.com/health
3

Search for Creators

curl -X POST https://api.influship.com/v1/search \
  -H "X-API-Key: YOUR_KEY" \
  -d '{"query": "fitness influencers"}'
4

Build Something Amazing

Use our comprehensive docs and code examples to integrate influencer data into your app

Why Developers Choose Influship

πŸš€ Fast & Reliable

Low-latency responses with 99.9% uptime. Built for production.

πŸ’° Transparent Pricing

Credit-based pricing with costs visible in every response header. No surprises.

πŸ€– AI-First Design

Powered by advanced AI for relevance scoring, matching, and recommendations.

πŸ“š Complete Documentation

Comprehensive docs, code examples, and guides in multiple languages.

πŸ” Secure & Compliant

API key authentication with IP allowlisting and rate limiting built-in.

πŸ’¬ Developer Support

Fast support from our team of engineers and influencer marketing experts.

Example Use Cases

Campaign Discovery Workflow

// 1. Search for creators
const searchResults = await fetch('https://api.influship.com/v1/search', {
  method: 'POST',
  headers: { 'X-API-Key': API_KEY },
  body: JSON.stringify({
    query: 'eco-friendly lifestyle creators',
    filters: {
      platform_filters: [{
        platform: 'instagram',
        min_followers: 10000,
        min_engagement_rate: 3.0
      }]
    }
  })
}).then(r => r.json());

// 2. Find similar creators
const lookalikes = await fetch('https://api.influship.com/v1/lookalike', {
  method: 'POST',
  headers: { 'X-API-Key': API_KEY },
  body: JSON.stringify({
    seeds: [{ id: searchResults.items[0].id }],
    limit: 20
  })
}).then(r => r.json());

// 3. Analyze brand safety
const safetyResults = await fetch('https://api.influship.com/v1/brand-safety/creators', {
  method: 'POST',
  headers: { 'X-API-Key': API_KEY },
  body: JSON.stringify({
    creator_ids: lookalikes.items.map(c => c.id)
  })
}).then(r => r.json());

Real-Time Autocomplete

// Debounced autocomplete for search-as-you-type
const searchCreators = debounce(async (query) => {
  const response = await fetch(
    `https://api.influship.com/v1/creators/autocomplete?q=${query}&limit=5`,
    {
      headers: { 'X-API-Key': API_KEY }
    }
  );
  return response.json();
}, 300);

// Usage: searchCreators('fitness')
// Cost: 0.001 credits per request

Pricing

Start free, scale as you grow:

Free Tier

1,000 credits/monthPerfect for testing and small projects
  • 1,000 requests/hour
  • All core features
  • Community support

Pro Tier

10,000+ credits/monthFor production applications
  • 10,000 requests/hour
  • Email discovery
  • Priority support
  • Advanced analytics

Enterprise

Custom pricingFor platforms and agencies
  • Custom rate limits
  • SLA guarantees
  • Dedicated support
  • Volume discounts
Transparent Costs - Every response includes X-Credits-Charged header showing exactly what you’re paying. See Pricing for details.

Comprehensive Documentation

Join Hundreds of Developers

Used by agencies, SaaS platforms, and marketplaces to power influencer discovery and analytics at scale.

Ready to Get Started?