GET
/
agents
curl --request GET \
  --url https://api.vogent.ai/api/agents
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "transcriberParams": {
        "keywords": [
          "<string>"
        ]
      },
      "metadata": {},
      "utteranceDetectorConfig": {
        "sensitivity": "ULTRA_FAST"
      }
    }
  ],
  "cursor": "<string>"
}

Query Parameters

limit
integer
default:100

The maximum number of records to fetch.

cursor
string

The pagination cursor returned by the previous request. Feed the result provided by vogent verbatim.

Response

200
application/json
Successful operation
data
object[]
required
cursor
string | null
required

A cursor you can pass to /agents to fetch the next page. If no next page exists, the cursor will be null.