Skip to main content
GET
/
tools
/
{tool_id}
Get Tool
curl --request GET \
  --url https://api.kejue.co/api/v1/tools/{tool_id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "tool_type": "<string>",
  "timeout": 123,
  "retry_count": 123,
  "display_name": "<string>",
  "description": "<string>",
  "http_config": {},
  "parameters": {},
  "response_schema": {},
  "precomputable": false,
  "agent_reaction": "speaks",
  "created_at": "<string>",
  "updated_at": "<string>"
}

Authorizations

X-API-Key
string
header
required

Workspace API key (e.g. kej_live_...)

Path Parameters

tool_id
string
required

Response

Successful Response

A custom HTTP tool (public-safe response).

id
string
required
name
string
required
tool_type
string
required
timeout
integer
required
retry_count
integer
required
display_name
string | null
description
string | null
http_config
Http Config · object
parameters
Parameters · object
response_schema
Response Schema · object
precomputable
boolean
default:false
agent_reaction
enum<string>
default:speaks

How the voice agent reacts when a tool call fires.

Ultravox-specific. Ignored by chat tool-calling.

  • SPEAKS: agent speaks naturally around the tool call (Ultravox default)
  • SILENT: agent stays silent until the tool returns
  • SPEAKS_ONCE: agent speaks at most one filler line during the tool call
Available options:
speaks,
silent,
speaks-once
created_at
string | null
updated_at
string | null