You will not find a price table on this page. Provider pricing, promotional credits, and model availability change faster than any table stays honest, and a stale number costs you real money. What follows is the method for checking any endpoint yourself — it takes about ten minutes and stays correct.
Comparison tables for model providers are the most confidently wrong content on the internet. They are usually assembled once, ranked well, and then never corrected — so they keep recommending a promotional rate that ended months ago or a model slug that has since been retired.
We would rather teach you a check that stays true. Run the sequence below against any endpoint you are considering, including one we link to. If a provider fails these checks, that tells you more than any table would.
In order. Each one eliminates providers cheaply before you spend time on the next.
Checks 1 and 3 in one pass — run this against any candidate endpoint
# 1. Does it serve the exact model id you need?
curl -s "$BASE_URL/v1/models" -H "Authorization: Bearer $TOKEN" \
| python3 -c "import sys,json;[print(m['id']) for m in json.load(sys.stdin).get('data',[])]" \
| grep -i "$MODEL_SUBSTRING"
# 3. What does one realistic request actually consume?
curl -s "$BASE_URL/v1/chat/completions" \
-H "Authorization: Bearer $TOKEN" -H 'Content-Type: application/json' \
-d '{"model":"PASTE_EXACT_ID","messages":[{"role":"user","content":"Refactor this function"}],"max_tokens":200}' \
| python3 -c "import sys,json;d=json.load(sys.stdin);print('served by:',d.get('model'));print('usage:',d.get('usage'))"
# Multiply the usage figures by the provider's published rates yourself.
# That number is your real cost. The headline rate is not.Switching providers is the most common answer to a problem that a free configuration change would have solved. Before you evaluate anything, confirm you actually have a capacity problem rather than a hygiene problem — the usage-limits page covers the free steps, and they compound in a way that a cheaper rate does not.
If you have done those and still need more capacity, then the checks above are the right way to choose. Run them against every candidate, including any provider this site links to.
Here is how it scores on the checks above, so you can skip straight to the ones that matter to you. Check 2 (tool compatibility): it is OpenAI-compatible and documents setup for 15 tools, so no adapter. Check 1 (exact model): the default group serves gpt-5.6-sol, claude-opus-4-8 and claude-opus-5, published openly. Check 3 (real cost): claude-opus-5 is listed at $2.000 per 1M prompt tokens and $10.000 per 1M completion tokens, pay-as-you-go, so you can multiply it against your own usage figures. Checks 4 and 5 — behaviour under your real load, and whether its errors are actionable — you should run yourself with the commands above, because we cannot measure your workload for you.
Run the checks against it →Referral link — we may earn a reward if you sign up, at no extra cost to you. This is the same advice we would give with no link at all. Check their current pricing and model list on their own site; we deliberately do not restate numbers that change.
Note what that does and does not claim: those are the figures its pricing page published on 20 August 2026, not a promise that it is cheapest for you. Rates change and your workload is not ours — which is why checks 3, 4 and 5 are commands you run rather than numbers we print. Re-run them the day you decide.