Astrodyne

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

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.