Snakk AI - Voice Agent Platform API
  1. Chat Operator
Snakk AI - Voice Agent Platform API
  • System
    • Simple health check
      GET
    • Detailed health check with dependency status
      GET
  • Tenants
    • Create new tenant (signup)
      POST
  • Agents
    • List all agents for tenant
      GET
    • Create new agent
      POST
    • Get agent details
      GET
    • Delete agent
      DELETE
    • Duplicate an agent
      POST
  • Tools
    • List tools/webhooks for agent
      GET
    • Add tool/webhook to agent
      POST
  • Calls
    • Start outbound call from database agent
      POST
    • Start outbound call with ad-hoc agent config (JSON)
      POST
    • List call history
      GET
    • Get call details
      GET
    • Diagnose recording issues
      GET
    • Call statistics
      GET
    • Fix recording data
      POST
  • Phone Numbers
    • List your phone numbers
    • Available numbers to claim
    • Claim a number from pool
    • Assign number to agent
    • Unassign number from agent
    • Release number (return to pool)
  • Statistics
    • Dashboard overview
    • Daily usage statistics
    • Monthly usage statistics
  • Subscription
    • Current subscription
    • Available plans
    • Request plan upgrade
  • Web Access
    • Generate web widget token
  • AI Tools
    • AI Prompt Generator
  • Account
    • Your account info
    • Regenerate API key
  • Platform Admin
    • Platform-wide overview (admin only)
  • Knowledge Base
    • List knowledge base files
    • Upload document to knowledge base
    • Delete knowledge base file
  • Chat Widget
    • Get chat widget config
    • Start chat session
    • Send chat message
    • Close chat session
    • List chat sessions
    • Get chat session details
    • Chat statistics
    • Get chat widget configuration
    • Update chat widget configuration
    • Close inactive sessions
    • Upload chat avatar/logo
    • Delete chat avatar/logo
    • Poll session status for human handoff
    • Poll session status (POST to avoid caching)
    • Get chat history
  • Version History
    • List agent version history
    • Get specific version details
    • Compare two versions
    • Restore agent to version
  • Workflows
    • List all workflows
    • Create workflow
    • Get workflow
    • Update workflow
    • Delete workflow
    • Publish workflow
    • Get version history
    • Rollback to version
    • Assign workflow to agent
    • Remove workflow from agent
  • Chat Operator
    • Get operator statistics
      GET
    • Get escalated chat queue
      GET
    • Get operator's active chats
      GET
    • Claim a chat from queue
      POST
    • Release a chat
      POST
    • Send message as operator
      POST
    • Update operator online status
      PUT
    • Get contact requests
      GET
    • Update contact request
      PUT
    • Create contact request
      POST
    • Subscribe to operator events (SSE)
      GET
    • Get all messages for a session
      GET
    • Update customer info for session
      PUT
  • Chat Verification
    • Check if agent has protected tools
    • Initiate identity verification
    • Check verification status
  • Tool Logs
    • List tool call logs
    • Get single tool log
    • Get tool usage statistics
  • Schemas
    • Tenant
    • Agent
    • Call
    • ToolLog
    • AgentTool
  1. Chat Operator

Get escalated chat queue

GET
/api/chat/operator/queue
Get list of escalated chats waiting for an operator

Request

Authorization
API Key
Add parameter in header
X-API-Key
Example:
X-API-Key: ********************
or

Responses

🟢200
application/json
List of escalated chats
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://snakk-backend-production.up.railway.app/api/chat/operator/queue' \
--header 'X-API-Key: <api-key>'
Response Response Example
[
    {
        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
        "agent_id": "2b1e3b65-2c04-4fa2-a2d7-467901e98978",
        "agent_name": "string",
        "customer_name": "string",
        "customer_email": "string",
        "escalated_reason": "string",
        "priority": 1,
        "message_count": 0,
        "escalated_at": "2019-08-24T14:15:22.123Z"
    }
]
Modified at 2025-12-17 20:24:06
Previous
Get operator statistics
Next
Get operator's active chats
Built with