Quickstart

Get started with AutoDo

AutoDo provides an OpenAI-compatible API that gives you access to ChatGPT, Claude, Gemini, and other frontier models through a single endpoint with unified billing and usage tracking.

There are two ways to integrate with AutoDo, depending on how much control you want:

ApproachBest for
APIFull control, any language, no extra SDK required
OpenAI SDKExisting OpenAI SDK code where you only want to swap the base URL

Note: Create an API key in the dashboard first, and make sure your account has available credits. All examples use https://autodo.work/v1 as the base URL.

Tip: AutoDo returns OpenAI-compatible responses, so standard SDKs usually only need a new base URL and API key.

export BASE_URL="https://autodo.work/v1"
export API_KEY="sk-***"

curl "$BASE_URL/chat/completions" \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"gpt-5.5","messages":[{"role":"user","content":"Hello"}]}'