Model catalog
curl https://gateway.example.com/v1/models \
-H "Authorization: Bearer $AI_GATEWAY_API_KEY"A small-spend self-test checklist to decide whether an AI API gateway fits your project. It replaces no guarantee — it just makes the risk visible.
Checklist
Run the same script and the same set of models against every candidate so stability and real cost stay comparable.
Confirm the website, console, docs, and pricing page all load, and read the terms of service, refund rules, model list, and recent announcements.
If the platform is OpenAI-API compatible, request /v1/models first; for native APIs, go by the platform's model catalog and the models selectable in the console.
Send one non-streaming request with a low-cost model and record the HTTP status code, time to first token, total latency, error message, and actual charge.
If your product depends on SSE streaming, test stream=true separately — including mid-stream disconnects, timeouts, and proxy-layer buffering.
After the request, check the balance deduction, call logs, token counts, and whether failed requests are billed. Don't ship on the strength of one successful response.
Before launch, configure budgets, rate limits, timeouts, retries, fallback models, and backup providers — and never hand a core API key or sensitive data to an unknown platform.
Commands
Replace the example domain with the platform's base_url and test with a low-value key. Never paste a real key in a public environment.
curl https://gateway.example.com/v1/models \
-H "Authorization: Bearer $AI_GATEWAY_API_KEY"curl https://gateway.example.com/v1/chat/completions \
-H "Authorization: Bearer $AI_GATEWAY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4.1-mini",
"stream": true,
"messages": [{"role": "user", "content": "Reply with pong"}]
}'Record
Risk
This site only organizes information about AI API relay services; it makes no guarantee about third-party platforms' stability, price, data security, or availability. Judge the risk yourself before use, and avoid uploading sensitive data, personal privacy, trade secrets, or core API keys to unknown platforms.