Skip to main content
POST
/
api
/
v1
/
tools
/
execute
/
{toolSlug}
Execute tool
curl --request POST \
  --url https://flowra.dev/api/v1/tools/execute/{toolSlug} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "connectedAccountId": "account_123",
  "entityId": "entity_123",
  "version": "2.0.0",
  "customAuthParams": "<unknown>",
  "customConnectionData": "<unknown>",
  "arguments": {},
  "text": "Send a message to the #general channel",
  "allowTracing": false,
  "workspaceId": "<string>"
}
'
{
  "success": true,
  "message": "Operation completed successfully",
  "data": {}
}

Authorizations

x-api-key
string
header
required

Project API key. Create and manage keys in the dashboard under Project → API Keys. Send as header: x-api-key:

Path Parameters

toolSlug
string
required

Body

application/json

Response

Tool executed successfully