Skip to main content
POST
/
agents
/
{agentId}
/
tools
/
execute
Execute a tool for an agent
curl --request POST \
  --url https://core.ravenna.ai/api/agents/{agentId}/tools/execute \
  --header 'Content-Type: application/json' \
  --header 'x-ravenna-api-token: <api-key>' \
  --data '{
  "integrationApp": "<string>",
  "toolName": "<string>",
  "input": "<any>"
}'
{
  "result": "<string>"
}

Authorizations

x-ravenna-api-token
string
header
required

Path Parameters

agentId
string
required

Body

application/json
integrationApp
string
required
toolName
string
required
input
any
required

Response

Successful response

result
string
required