GET
https://app.evoriqa.com/api/v1/workspaceGet the workspace settings snapshot
Returns the settings snapshot. Workspace create/delete/switch are deliberately not in v1 — they are session flows that do not map to a key identity.
Requires scope workspace: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.
Request
curl
curl "https://app.evoriqa.com/api/v1/workspace" \
-H "x-api-key: $EVORIQA_API_KEY"Node.js
const res = await fetch("https://app.evoriqa.com/api/v1/workspace", {
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/workspace",
headers={"Authorization": f"Bearer {os.environ['EVORIQA_API_KEY']}"},
)
body = res.json()Response
200 OK
{
"success": true,
"data": {
"id": "c0ffee00-1234-4abc-9def-0123456789ab",
"name": "Acme Support",
"plan": "pro",
"retentionDays": 365,
"weeklyDigestEnabled": true,
"firstResponseSlaMinutes": 60,
"leadAutoAssign": true,
"webPushEnabled": false,
"agentHourlyCostCents": 3500,
"agentCostCurrency": "USD",
"createdAt": "2026-05-01T12:00:00.000Z"
}
}