JApi

Quickstart

Three changes, then send requests.

Use JApi’s gateway base URL, your JApi key, and one public model name. Your upstream credential never enters client code.

BASE_URL=https://api.japi.<tld>/v1
API_KEY=sk-japi-live-...
MODEL=gpt-5.6-astra

OpenAI-compatible request

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

The gateway request path is a separate service from this web dashboard and is intentionally not exposed until its accounting/reservation layer is implemented.