Skip to main content

What’s New

March 2026
Feature

Weighted lookalike seeds

Lookalike search now accepts up to 10 seeds with individual weights (0-1). Higher weights make the API lean more heavily on that seed’s characteristics when ranking results.This is particularly useful when you have campaign performance data — weight your best performers higher and the API finds more creators who skew toward that profile.
{
  "seeds": [
    { "platform": "instagram", "username": "top_performer", "weight": 1.0 },
    { "platform": "instagram", "username": "decent_creator", "weight": 0.5 }
  ],
  "limit": 25
}
See Lookalikes for weighting strategies.
March 2026
Improvement

Search billing and rate limit alignment

Search billing now cleanly separates the base fee (AI inference cost) from the per-creator delivery fee. Rate limit headers are consistent across all endpoints and accurately reflect credit consumption.
February 2026
Feature

Campaign match endpoint

POST /v1/creators/match scores creators against a campaign brief. Each result includes a decision (good, neutral, or avoid), a numeric score, and human-readable reasoning.The intent.query field (500 chars) describes the campaign. The optional intent.context field (2,000 chars) adds background — target demographics, content format preferences, brand guidelines.See Match Reasons for how to interpret the output.
February 2026
Improvement

Credit-based rate limiting with trust tiers

Rate limits are now enforced using credit budgets instead of simple request counts. Heavier endpoints consume more budget than lighter ones. Trust tiers increase your limits based on lifetime spend — and never downgrade.See Rate Limits & Tiers for the full tier table.
February 2026
Feature

TypeScript SDK via Stainless

The official TypeScript SDK is available on npm. Generated from the OpenAPI spec by Stainless, it provides typed methods, request/response models, and error classes like RateLimitError and APIError.
npm install influship
See the SDK guide for setup and common operations.
January 2026
Feature

Stripe usage billing

API usage is now billed through Stripe with automatic invoice generation. Credits accumulate until your trust tier’s billing threshold is reached, then an invoice is created. Payment upgrades your tier and increases rate limits.See Pricing for credit costs and Rate Limits & Tiers for threshold details.