Snakk AI - Voice Agent Platform API
  1. AI Tools
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
  • 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
  • Phone Numbers
    • List your phone numbers
      GET
    • Available numbers to claim
      GET
    • Claim a number from pool
      POST
    • Assign number to agent
      POST
    • Unassign number from agent
      POST
    • Release number (return to pool)
      POST
  • Statistics
    • Dashboard overview
      GET
    • Daily usage statistics
      GET
    • Monthly usage statistics
      GET
  • Subscription
    • Current subscription
      GET
    • Available plans
      GET
    • Request plan upgrade
      POST
  • Web Access
    • Generate web widget token
  • AI Tools
    • AI Prompt Generator
      POST
  • Account
    • Your account info
    • Regenerate API key
  • Platform Admin
    • Platform-wide overview (admin only)
  • Schemas
    • Tenant
    • Agent
    • Call
  1. AI Tools

AI Prompt Generator

POST
/api/ai-tools/generate-prompt
Generate professional agent instructions with AI

Request

Authorization
API Key
Add parameter in header
X-API-Key
Example:
X-API-Key: ********************
or
Body Params application/json

Examples

Responses

🟢200Success
application/json
Prompt generated
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://snakk-backend-production.up.railway.app/api/ai-tools/generate-prompt' \
--header 'X-API-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "description": "A customer service agent for telecom company that handles support tickets"
}'
Response Response Example
{
    "success": true,
    "prompt": "string"
}
Modified at 2025-11-30 23:12:05
Previous
Generate web widget token
Next
Your account info
Built with