GET
https://app.evoriqa.com/api/v1/chatbots/{chatbotId}Get a chatbot by id
Returns the chatbot's full record, including its widget settings, allowed domains, and business hours. A chatbot in another workspace reads as 404.
Requires scope chatbots:read
Warning:
Access is gated — enable it before your first call
The API is off by default. A request succeeds only when all three switches are on: the platform master switch (off by default), your organisation’s API toggle, and your plan or client entitlement. Any one off returns 403 API access is not enabled for this workspace.
Parameters
| Name | In | Type | Required | Default | Description |
|---|---|---|---|---|---|
| chatbotId | path | string uuid | Required | — | The chatbot's id. |
Request
curl
curl "https://app.evoriqa.com/api/v1/chatbots/{chatbotId}" \
-H "x-api-key: $EVORIQA_API_KEY"Node.js
const res = await fetch("https://app.evoriqa.com/api/v1/chatbots/{chatbotId}", {
headers: {
Authorization: `Bearer ${process.env.EVORIQA_API_KEY}`,
},
});
const responseBody = await res.json();Python
import os
import requests
res = requests.get(
"https://app.evoriqa.com/api/v1/chatbots/{chatbotId}",
headers={"Authorization": f"Bearer {os.environ['EVORIQA_API_KEY']}"},
)
body = res.json()Response
200 OK
{
"success": true,
"data": {
"id": "3f2504e0-4f89-41d3-9a0c-0305e82c3301",
"name": "Sales Assistant",
"publicId": "cb_9x2k7m4q",
"status": "active",
"botName": "Ava",
"description": null,
"greetingMessage": "Hi! How can I help?",
"fallbackMessage": null,
"systemPrompt": null,
"tone": "helpful",
"language": "en",
"temperature": 0.2,
"maxContextChunks": 6,
"similarityThreshold": 0.4,
"maxReplySentences": null,
"humanHandoffEnabled": true,
"createdAt": "2026-01-15T09:24:00.000Z",
"updatedAt": "2026-01-15T09:24:00.000Z"
}
}