Guides

Quickstart

Create an API key, send your first request, and verify logs and usage.

1. Create an account

Sign in to uouo cloud and open the console. If your deployment is invite-only, complete signup with the invite code provided by your workspace administrator.

2. Create an API key

Open `/app/keys`, create a new API key, and copy it once. Store it in a server-side environment variable:

export UOUODUO_API_KEY="sk-xxx..."
export UOUODUO_BASE_URL="https://uouo.cloud/v1"

3. Send a request

curl "$UOUODUO_BASE_URL/chat/completions" \
  -H "Authorization: Bearer $UOUODUO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o-mini",
    "messages": [
      { "role": "user", "content": "Reply with a one-sentence status update." }
    ]
  }'

4. Verify the request

Open `/app/logs` and confirm the request appears with model, route, status, tokens, latency, and cost. Then open `/app/usage` to review usage trends.

5. Next steps

  • Read `/docs/api/chat-completions` for request fields.
  • Read `/docs/sdk/openai-node` or `/docs/sdk/openai-python` for SDK setup.
  • Create separate keys for dev, staging, and production.
  • Set project budgets before routing production traffic.
Screenshot pending
Quickstart · uouo cloud