Astrodyne documentation
Astrodyne is an OpenAI-compatible AI gateway. You send Chat Completions requests to one endpoint with one API key; Astrodyne executes them, meters token usage, settles the charge against your balance, and records every request so you can inspect it later.
How the platform fits together
- API Keys — create and revoke the credentials your code uses.
- Playground — run requests from your browser through the same gateway as production traffic.
- Requests — every request you send, with status, tokens, latency, and the settled charge.
- Usage — aggregate consumption over time.
- Billing — your balance, funding history, and settled charges.
- Models — the canonical model catalog available to your account.
One request, end to end
curl
curl https://api.astrodyne.ai/v1/chat/completions \
-H "Authorization: Bearer $ASTRODYNE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "YOUR_MODEL_ID",
"messages": [{"role": "user", "content": "Hello"}]
}'
The response is a standard Chat Completion. The
X-Astrodyne-Request-Id response header carries the public
request ID (req-…) you can open in the
Request Explorer.