GET
/
api
/
calls
/
{call_id}
/
tools
curl --request GET \
  --url https://api.ultravox.ai/api/calls/{call_id}/tools \
  --header 'X-API-Key: <api-key>'
[
  {
    "callToolId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "toolId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "definition": {
      "description": "<string>",
      "dynamicParameters": [
        {
          "name": "<string>",
          "location": "PARAMETER_LOCATION_UNSPECIFIED",
          "schema": {},
          "required": true
        }
      ],
      "staticParameters": [
        {
          "name": "<string>",
          "location": "PARAMETER_LOCATION_UNSPECIFIED",
          "value": "<any>"
        }
      ],
      "automaticParameters": [
        {
          "name": "<string>",
          "location": "PARAMETER_LOCATION_UNSPECIFIED",
          "knownValue": "KNOWN_PARAM_UNSPECIFIED"
        }
      ],
      "timeout": "<string>",
      "precomputable": true,
      "http": {
        "baseUrlPattern": "<string>",
        "httpMethod": "<string>",
        "authHeaders": [
          "<string>"
        ],
        "authQueryParams": [
          "<string>"
        ],
        "callTokenScopes": [
          "<string>"
        ]
      },
      "client": {}
    }
  }
]

Authorizations

X-API-Key
string
header
required

API key

Path Parameters

call_id
string
required

Response

200 - application/json
callToolId
string
required
toolId
string | null
required
name
string
required

The possibly overridden name of the tool.

definition
object
required

A tool as used for a particular call (omitting auth details).