Starveri API Docs

OpenAI-compatible GPT and Codex access with credits, credit-aware usage modes, and documented model pricing.

Pricing

Model prices are in credits per 1M tokens and are advertised at documented model pricing. The example column shows the approximate price for a request with 10,000 input tokens and 10,000 output tokens before any tool fees. Requests using more than 30% of a model's context window use the long-context multiplier. Gemma models do not offer input-token caching or cached-input discounts.

ModelCached Input / 1MInput / 1MOutput / 1MExample 10k in + 10k out
Gemma 4
gemma-4
-5 credits15 credits0.2 credits
Gemma 4 Uncensored
gemma-4-uncensored
-10 credits30 credits0.4 credits
GPT 5.6 Sol
gpt-5.6-sol
5 credits50 credits150 credits2 credits
GPT 5.6 Terra
gpt-5.6-terra
2.5 credits25 credits75 credits1 credit
GPT 5.6 Luna
gpt-5.6-luna
1 credit10 credits30 credits0.4 credits
GPT 5.5
gpt-5.5
5 credits50 credits150 credits2 credits
GPT 5.4
gpt-5.4
1.67 credits16.67 credits50 credits0.6667 credits
GPT 5.4 Mini
gpt-5.4-mini
0.56 credits5.56 credits16.67 credits0.2223 credits
GPT 5.3 Codex Spark
gpt-5.3-codex-spark
2 credits20 credits60 credits0.8 credits
ToolPrice
Web search0.1 credits per call
Code interpreter0.5 credits per GB RAM/minute plus 0.5 credits per GB disk/minute (minimum 1 GB RAM and 5 GB disk)

Quick Start

  1. Use the credits page to buy at least $1 in prepaid credits.
  2. After checkout, copy your dashboard API key or create a child API key from the dashboard.
  3. Send OpenAI-compatible requests to https://api.starveri.net/v1.
curl https://api.starveri.net/v1/chat/completions \
  -H "Authorization: Bearer YOUR_STARVERI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"gpt-5.5","messages":[{"role":"user","content":"Say hello"}]}'

Free Demo

The credits page includes a GPT 5.5 no-reasoning demo for quick text-only testing before purchase.

Models

Use GET /v1/models for the live supported model list and prices. Unsupported models are not advertised.

ModelNotes
gpt-5.6-solGPT 5.6 Sol; Standard service, Pro, and Max reasoning are available.
gpt-5.6-terraGPT 5.6 Terra; Standard service, Pro, and Max reasoning are available.
gpt-5.6-lunaGPT 5.6 Luna; Standard service and Pro are available; Pro keeps Luna's normal effort mapping.
gpt-5.5GPT 5.5 with None through Xhigh reasoning, Standard service, Flex, and Pro where supported.
gpt-5.4GPT 5.4 with None through Xhigh reasoning and Standard service.
gpt-5.4-miniGPT 5.4 Mini with Standard and Pro Standard service.
gpt-5.3-codex-sparkText-only Spark. Image inputs are first transcribed by GPT 5.4 Mini and both stages are billed.
gemma-4Regular Gemma 4 served by a dedicated runtime. Standard inference only, 124,160-token context, automatic request/response moderation, and a binary thinking control.
gemma-4-uncensoredGemma 4 Uncensored served by a dedicated runtime. Standard inference only, 32,000-token context, no automatic omni or policy moderation, and a binary thinking control; account and rate controls still apply.

Credits and access modes

Purchases add prepaid credits immediately. The current model table and response metadata are the source of truth for token and tool pricing; availability and attachment handling can vary by route. Gemma requests use a dedicated runtime only. During capacity pressure, requests may wait in arrival order; unavailable dedicated inference returns HTTP 503 rather than switching models.

Use the dashboard to issue child keys, assign balances, grant, set, or remove credits, and revoke keys. No fixed per-key quota table is published here.

Token Buckets

For marketplaces that bill per request, Starveri exposes bucketed endpoints that cap the request size and bill from the selected bucket.

POST /v1/chat/completions/gpt-5.5-10k
POST /v1/chat/completions/gpt-5.5-100k
POST /v1/chat/completions/gpt-5.4-mini-10k

Credits

Credits are prepaid balance. The dashboard can issue child keys, assign credit balances, manage child-key balances and credit operations, restock keys, and revoke keys.

Stripe Checkout supports coupon codes when available.

Tools

Paid API requests may use web search and code interpreter when available for the route. The code interpreter is sandboxed with timeout, input-size, output-size, and concurrency limits.