Get All Agentic Avatars

GET/v1/agentic-avatars

Retrieve a list of all agentic avatars.

Request History

Log in to see full request history

TIMESTATUSUSER AGENT
Make a request to see history.

0 Requests This Month

Query Parameters

All query parameters are optional. Use them to filter and paginate the results.

ParameterTypeDescription
pageinteger
optional
Page number for pagination. Default: 1
limitinteger
optional
Number of items per page. Default: 20
statusstring
optional
Filter by status. Options: active or inactive. If not specified, all agentic avatars are returned regardless of status.

Request Example

shell
curl -X GET "https://api.konpro.ai/v1/agentic-avatars?page=1&limit=20&status=active" \
  -H "x-api-key: <your-api-key>" \
  -H "Content-Type: application/json"

Response

FieldTypeDescription
agentic_avatarsarrayArray of agentic avatar objects. Each object contains the agentic avatar details.
paginationobjectPagination information object containing page, limit, total, and total_pages

Agentic Avatar Object

FieldTypeDescription
idstringUnique identifier of the agentic avatar
namestringName of the agentic avatar
avatar_idstringThe avatar ID used in this agentic avatar
voice_idstringThe voice ID used in this agentic avatar
brain_idstringThe knowledge base (brain) ID used in this agentic avatar
statusstringCurrent status of the agentic avatar (e.g., active or inactive)
created_atstringISO 8601 timestamp of when the agentic avatar was created

Pagination Object

FieldTypeDescription
pageintegerCurrent page number
limitintegerNumber of items per page
totalintegerTotal number of agentic avatars matching the query
total_pagesintegerTotal number of pages available

Sample Successful Response

json
{
  "agentic_avatars": [
    {
      "id": "72e527cd-9d40-47a7-8c9d-753f945a7574",
      "name": "Customer Support Agent",
      "avatar_id": "avatar-3655",
      "voice_id": "fa4954b5-dd32-47b7-8e11-b552ca35c13f",
      "brain_id": "002a9215-dc48-4537-91cb-93ac182e4e93",
      "status": "active",
      "created_at": "2024-01-01T00:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 5,
    "total_pages": 1
  }
}

Notes

  • This endpoint requires authentication using the x-api-key header.
  • All query parameters are optional. If not specified, the endpoint returns all agentic avatars with default pagination.
  • Use the status parameter to filter by active or inactive agentic avatars.
  • The response includes pagination information to help you navigate through multiple pages of results.
  • Only agentic avatars that belong to your account are returned.
  • For error descriptions, see Error Responses.

Table of Contents