Skip to main content
GET
/
agents
List Agents
curl --request GET \
  --url https://call.aivoco.on.cloud.vispark.in/agents \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "system_message": "<string>",
    "voice": "boy",
    "functions": {
      "functions": [
        {
          "name": "<string>",
          "description": "<string>",
          "api_url": "<string>",
          "method": "GET",
          "parameters": {
            "type": "<string>",
            "properties": {},
            "required": [
              "<string>"
            ]
          }
        }
      ]
    }
  }
]

Authorizations

X-API-Key
string
header
required

Response

200 - application/json

A list of agents.

id
string

Unique identifier for the agent.

name
string

Name of the agent.

system_message
string

Defines the agent's personality and behavior.

voice
enum<string>

Voice identity of the agent.

Available options:
boy,
girl
functions
object