GET
/
agents
curl --request GET \
  --url https://api.vogent.ai/api/agents
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "transcriberParams": {
        "type": "deepgram",
        "keywords": [
          "<string>"
        ]
      },
      "metadata": {},
      "utteranceDetectorConfig": {
        "sensitivity": "ULTRA_FAST"
      },
      "idleMessageConfig": {
        "enabled": true,
        "messages": [
          "<string>"
        ],
        "idleDurationMilliseconds": 5001,
        "maxIdleMessages": 2
      },
      "language": "<string>",
      "maxDurationSeconds": 10800,
      "defaultVoiceId": "<string>",
      "defaultVersionedPromptId": "<string>",
      "defaultExtractorId": "<string>",
      "linkedFunctionDefinitions": [
        {
          "functionDefinitionId": "<string>",
          "lifecycleMessagesOverride": {
            "started": [
              "<string>"
            ]
          }
        }
      ]
    }
  ],
  "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

The response is of type object.