Persona
All Personas
Persona
All Personas
Get all personas
GET
/
v1
/
personas
curl --request GET \
--url https://api.anam.ai/v1/personas \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"personaPreset": "<string>",
"avatar": {
"id": "<string>",
"displayName": "<string>",
"variantName": "<string>",
"imageUrl": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"voice": {
"id": "<string>",
"displayName": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"isDefaultPersona": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"meta": {
"total": 123,
"lastPage": 123,
"currentPage": 123,
"perPage": 123,
"prev": 123,
"next": 123
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Was this page helpful?
curl --request GET \
--url https://api.anam.ai/v1/personas \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"personaPreset": "<string>",
"avatar": {
"id": "<string>",
"displayName": "<string>",
"variantName": "<string>",
"imageUrl": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"voice": {
"id": "<string>",
"displayName": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"isDefaultPersona": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"meta": {
"total": 123,
"lastPage": 123,
"currentPage": 123,
"perPage": 123,
"prev": 123,
"next": 123
}
}