Skip to main content
GET
/
v1
/
creators
/
{id}
/
profiles
import InflushipAPI from 'influship';

const client = new InflushipAPI({
  apiKey: 'My API Key',
});

const response = await client.creators.listProfiles('123e4567-e89b-12d3-a456-426614174000');

console.log(response.profiles);
{
  "profiles": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "creator_profile_id": "123e4567-e89b-12d3-a456-426614174000",
      "platform": "instagram",
      "username": "<string>",
      "display_name": "<string>",
      "bio": "<string>",
      "verified": true,
      "follower_count": 125000,
      "engagement_rate": 4.2,
      "avatar_url": "<string>",
      "external_url": "<string>"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Path Parameters

id
string<uuid>
required

Creator UUID

Query Parameters

mode
enum<string>
default:lite

Response detail level

Available options:
lite,
detailed
platforms
string

Comma-separated list of platforms to include (instagram, tiktok)

Response

Social account data for the creator

profiles
object[]

Array of social account objects. The structure depends on the mode parameter:

  • If mode: "lite": Returns SocialAccountLite objects
  • If mode: "detailed": Returns SocialAccountDetailed objects with additional fields

Basic social account information returned in lite mode