Skip to main content
CloudService

Quickstart

Connect your tools in 2 minutes

Full docs →

CloudService is OpenAI- and Anthropic-compatible. Point any client at the CloudService base URL, drop in your key, and send the same requests you already know. Pick your client below.

Which base URL?

OpenAI-compatible clients end in /v1. Native Anthropic clients use the origin only and append /v1/messages themselves. Token-pack keys add a /token segment.

Which model ID?

Always use an exact ID from your key's authenticated catalog. Fetch it with GET /v1/models. The samples below use safe defaults you can swap.

curl · OpenAI

OpenAI-compatible Chat Completions over plain HTTP.

API-credit keys use https://api.cloudservice.services/v1. OpenAI token-pack keys use https://api.cloudservice.services/token/v1.

chat.sh
curl "https://api.cloudservice.services/v1/chat/completions" \
  -H "Authorization: Bearer YOUR_CLOUDSERVICE_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.4-mini",
    "messages": [{"role":"user","content":"Reply with exactly OK"}],
    "max_tokens": 16
  }'

Replace YOUR_CLOUDSERVICE_KEY with your CloudService key.

cURL reference

Need account help or a key? Contact support.