Embed QuerioEmbedded API
Authentication
Bearer token authentication for the Embedded API.
All v2 Embedded API endpoints require a Bearer token in the Authorization header.
Authorization: Bearer <your_token>Create a token
Create API tokens in Querio under Embedded API token management.
Store tokens securely and rotate them if you believe one has been exposed.
Example request
curl -X POST https://app.querio.ai/api/v2/embed/{customer_slug}/conversations \
-H "Authorization: Bearer <your_token>" \
-H "Content-Type: application/json" \
-d '{
"prompt": "How many shipments happened in the last 30 days",
"datasourceId": "your_dataset_id",
"environment": "production"
}'