Skip to main content
GET
/
v1
/
creators
/
{creator_id}
Get Creator by ID
curl --request GET \
  --url https://api.upriver.ai/v1/creators/{creator_id} \
  --header 'X-API-Key: <api-key>'
{
  "channels": [
    {
      "platform": "youtube",
      "handle": "@creator",
      "url": "https://www.youtube.com/@creator"
    }
  ],
  "labels": [],
  "tags": [],
  "creator_id": "cb4f53f0-c905-4c0a-86df-9a6c7551c408",
  "stable_creator_id": "cb4f53f0-c905-4c0a-86df-9a6c7551c408",
  "redirect": {
    "requested_creator_id": "97ca4d8c-c1b2-4c73-a4f0-7ac6bb05e0cf",
    "canonical_creator_id": "cb4f53f0-c905-4c0a-86df-9a6c7551c408",
    "reason": "merged"
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

creator_id
string
required

Query Parameters

include
string[]

Optional expansions to include in the response. Allowed values: engagement_metrics, video_metrics, relative_metrics, bio, audience, brand_safety, creator_id. creator_id is accepted as a backward-compatible no-op because the field is now always returned. For /creators/search, include expansions are supported only for exact creator_url lookups. Broad query mode (query/creator_name without creator_url) returns lightweight results without expansions. Use /creators or /creators/{creator_id} to enrich a selected result. video_metrics returns trailing 12-week inventory metrics. relative_metrics returns public benchmark summaries relative to similar creators. Examples: include=engagement_metrics&include=bio or include=engagement_metrics,bio

Response

Canonical creator payload. When a previously stored creator ID has been merged into another creator, the response still returns HTTP 200 with the canonical creator body, a redirect object in the JSON payload, and an X-Creator-Redirect response header.

Response returned by the creator get endpoint.

bio
CreatorBio · object

Biographical summary of the creator. Only present when include=bio is specified.

channels
CreatorPlatform · object[]

Social media channels for the creator across supported platforms.

labels
CreatorLabel · object[]

Descriptive labels for the creator. Includes stable categories (type='category', use for filtering) and dynamic tags (type='tag'). See /media_categories for the full category taxonomy.

tags
CreatorTag · object[]
deprecated

DEPRECATED: Use 'labels' instead. This field will be removed in a future version.

creator_id
string | null

Stable Upriver creator ID. Present for any successful creator response, including provisional single-platform creators. Store and reuse this ID for consistency across API calls.

redirect
CreatorRedirectInfo · object

Present when the requested creator_id has been merged into another creator. Clients should update any stored ID to redirect.canonical_creator_id.

Example:
{
  "canonical_creator_id": "cb4f53f0-c905-4c0a-86df-9a6c7551c408",
  "reason": "merged",
  "requested_creator_id": "97ca4d8c-c1b2-4c73-a4f0-7ac6bb05e0cf"
}
audience
CreatorAudience · object

Directional audience demographics. Only present when include=audience is specified. age.min_age/max_age is a directional envelope; age.segments contains explicit percentage buckets and may be partial.