Skip to main content

Creators vs Profiles

The Influship API uses a two-level data model: Creators represent people, and Profiles represent their social media accounts.

The Relationship

A single creator can have multiple profiles across different platforms. We link them together so you can see the full picture of a creator’s online presence.

When to Use Each

Use CaseEndpointWhy
Search for creators/v1/searchSearch across all platforms at once
Get a specific account/v1/profilesLook up by username + platform
Expand to full data/v1/creatorsGet all linked profiles for a creator
Find similar creators/v1/lookalikeMatch based on combined profile data

Data Modes

Both creators and profiles support lite and detailed modes:

Lite Mode

Basic info for lists and previews:
  • Name, avatar, bio
  • Platform, username
  • Follower count, engagement rate

Detailed Mode

Full data for deep analysis:
  • All lite fields
  • Average likes, comments, shares
  • Posting frequency
  • External links
  • Content topics
  • Audience demographics (where available)

Example Workflow

Scenario: Find creators by Instagram username, then get their full cross-platform presence.
# 1. Look up by Instagram username
curl -X POST https://api.influship.com/v1/profiles \
  -H 'X-API-Key: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "usernames": [
      {"platform": "instagram", "username": "fitness_sarah"}
    ],
    "mode": "lite"
  }'

# Response includes creator_id: "550e8400-..."

# 2. Get full creator data (all platforms)
curl -X POST https://api.influship.com/v1/creators \
  -H 'X-API-Key: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "creator_ids": ["550e8400-..."],
    "mode": "detailed",
    "include_profiles": true,
    "profile_mode": "detailed"
  }'

Key Differences

AspectCreatorProfile
RepresentsA personA social account
ID formatUUIDUUID (prefixed internally)
Unique byPerson identityPlatform + username
ContainsBio, name, linked profilesPlatform metrics, username
Search byNatural language queryUsername + platform

Common Patterns

Building a Creator Card

Use /v1/creators with include_profiles: true to get everything in one request.

Autocomplete / Typeahead

Use /v1/creators/autocomplete for fast, lightweight suggestions as users type.

Verifying a Specific Account

Use /v1/profiles when you have a platform and username and need to confirm it exists.