Api Reference
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.
The data returned by the backend.
The status of the execution (success or error).
1curl -X POST https://api.betterdata.io/v1/execute \2 -H "Authorization: Bearer YOUR_API_KEY" \3 -H "Content-Type: application/json" \4 -d '{5 "name": "search_products",6 "arguments": { "query": "blue running shoes" },7 "sessionId": "session_123"8 }'