Skip to content
SOKE

Chat Interface

OpenAI-compatible chat completions endpoint. Ask things like "optimize my title about stoicism" and get structured results back. Drop-in for any app that speaks chat completions.

app.usesoke.ai/chat

OpenAI-compatible

Same request/response shape as the OpenAI Chat Completions API.

Any workflow tool

Works inside n8n, Make, Zapier, or your own app.

Multi-service synthesis

One chat request can trigger research + title opt + description generation.

Call it from code

One endpoint. Standard REST. Works from any HTTP client.

View full docs
Request
curl -X POST https://api.usesoke.ai/v1/chat/completions \
  -H "X-Soke-Key: $SOKE_KEY" \
  -d '{"model":"soke-v1","messages":[{"role":"user","content":"optimize my title about stoicism"}]}'
Response
{
  "id": "chatcmpl-abc",
  "object": "chat.completion",
  "choices": [{
    "message": {
      "role": "assistant",
      "content": "Here are three optimized titles...",
      "data": { "services_used": ["title_optimize"] }
    }
  }]
}

Ready to try Chat Interface?

Start your 14-day free trial. No credit card required.