Rafobase Logo

Get creator public profile

Retrieve a creator's public profile by their public token. This endpoint does not require authentication.

GET
/creators/{token}

Retrieve a creator's public profile by their public token. This endpoint does not require authentication.

Path Parameters

token*string

Creator public token

Response Body

application/json

application/json

curl -X GET "https://api-base.rafo.work/api/v1/creators/abc123def456"
{
  "id": "880e8400-e29b-41d4-a716-446655440003",
  "name": "Creator Name",
  "niche": "fitness",
  "instagramUsername": "@creator",
  "totalSales": 50,
  "approvedSales": 45,
  "commissionTier": {
    "name": "Gold",
    "commissionRate": 0.15
  }
}
{
  "error": {
    "code": "NOT_FOUND",
    "message": "Resource not found"
  }
}