SnozeDevelopers
API referenceAi

Describe the AI operations available in a workspace

Returns the operation catalog revision along with each operation's label, icon, presentation, and the Ask/Build/Act modes it supports, which is what the client uses to render the AI surface. Requires an authenticated caller who is a member of the workspace.

GET
/v1/workspaces/{workspaceId}/ai/capabilities
AuthorizationBearer <token>

Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.

In: header

Path Parameters

workspaceId*string

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/workspaces/string/ai/capabilities"
{  "data": {    "revision": "string",    "operations": [      {        "name": "string",        "kind": "string",        "method": "string",        "description": "string",        "permission": "string",        "riskCeiling": "none",        "verifiability": "verified",        "inputSchema": {},        "outputSchema": {},        "strict": true,        "doc": {          "summary": "string",          "useWhen": "string",          "avoidWhen": "string",          "useInstead": "string",          "keywords": [            "string"          ],          "returns": "string",          "examples": [            "string"          ],          "errors": [            {              "code": "string",              "message": "string"            }          ]        },        "label": "string",        "icon": "string",        "presentation": "read",        "modes": [          "ask"        ]      }    ]  }}