Skip to main content
GET
/
creators
/
{creator_id}
Get a creator
curl --request GET \
  --url https://api.creatoraudit.com/v2/creators/{creator_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "type": "creator",
    "is_active": false,
    "metadata": {},
    "accounts_summary": {
      "total": 0,
      "platforms": {},
      "total_followers": 0
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

creator_id
string<uuid>
required

Creator UUID.

Response

Successful Response

data
CreatorResponse · object
required