GET
/
api
/
v1
/
avatars
List avatars
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://realtimeavatar.ai/api/v1/avatars', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "data": [
    {
      "id": "<string>",
      "tenantId": "<string>",
      "displayName": "<string>",
      "modelId": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "sourceAssetId": "<string>",
      "defaultVoiceId": "<string>",
      "cacheManifestId": "<string>",
      "cacheVersion": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

TIC API key as a bearer token: Authorization: Bearer tic_live_... or tic_test_.... Create keys in the dashboard at /platform/dashboard or via POST /api/v1/api-keys.

Response

Avatar list

data
object[]
required