Request Body
The name of the tool to execute (e.g. search_products).
The arguments for the tool, matching its Zod schema.
The current conversation session ID.
Response
The data returned by the backend.
The status of the execution (success or error).
Example
curl -X POST https://api.betterdata.io/v1/execute \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "search_products",
"arguments": { "query": "blue running shoes" },
"sessionId": "session_123"
}'