curl --request GET \
--url https://api.anam.ai/v1/avatars \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"displayName": "<string>",
"variantName": "<string>",
"imageUrl": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"meta": {
"total": 123,
"lastPage": 123,
"currentPage": 123,
"perPage": 123,
"prev": 123,
"next": 123
}
}Returns a list of all avatars with pagination support
curl --request GET \
--url https://api.anam.ai/v1/avatars \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"displayName": "<string>",
"variantName": "<string>",
"imageUrl": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"meta": {
"total": 123,
"lastPage": 123,
"currentPage": 123,
"perPage": 123,
"prev": 123,
"next": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Page number for pagination
x >= 1Number of avatars per page (max 100)
1 <= x <= 100Search term to filter avatars by display name
Only return one-shot avatars
Successfully retrieved avatars
Was this page helpful?