Skip to main content

Overview

SaveGate provides access to 400+ AI models from leading providers. All models are accessible through a unified API using the same authentication and request format. Pricing shown is per 1M tokens (input/output).

OpenAI Models

Chat Models

Responses Models

Embedding Models

Image Generation Models

Image generation models also support resolution and quality variants (e.g., hd/1024-x-1024/dall-e-3). Use the /v1/models API endpoint to see all available variants.

Audio Speech Models

Audio Transcription Models

Video Generation Models

Completion Models

Moderation Models

Anthropic Claude Models

Chat Models

Google Gemini Models

Chat Models

Chat models are accessed via the standard OpenAI-compatible endpoint. Use the model IDs below directly — no prefix needed.

Controlling thinking cost

Gemini models think before answering by default, and those reasoning tokens are billed as output. On short tasks — classification, extraction, formatting — that can be most of your bill. Use reasoning_effort to turn it down. The accepted value differs per model, which is easy to get wrong:
Leave reasoning_effort unset when answer quality matters more than cost.

Image Generation Models

Google calls these models “nano banana” and “nano banana pro”. The IDs below are the official API names — use those.
Generated images are billed at a flat rate per image0.039forgemini2.5flashimage,0.039 for `gemini-2.5-flash-image`, 0.134 for gemini-3-pro-image — regardless of resolution. Text in the same request (your prompt, and any text the model returns) is billed separately at the input/output rates above. Both figures appear in your usage report.
Both models work through the standard OpenAI-compatible endpoint. Two ways to call them:

1. /v1/images/generations — plain generation

The response contains data[0].b64_json, not data[0].url. You must decode the base64 yourself — there is no hosted image link.

gemini-2.5-flash-image · 1024×1024 · ~$0.058

Set the frame shape with imageConfig:

gemini-3-pro-image · 16:9 → 1408×768 · ~$0.202

2. /v1/chat/completions — editing, or text + image together

Send an image in and describe the change. This is the only way to edit an image.
On this path the image is at choices[0].message.images[0].image_url.url as a data URI — note images, plural. Reading message.content returns null.

Practical notes

  • A response is 1–2 MB of base64. Set a generous client timeout (60s+) and never print it straight to a terminal.
  • When sending an image in, build the JSON in a file (--data-binary @req.json). Inlining base64 into a shell argument fails with argument list too long.
  • n (multiple images per request) is not supported — issue separate requests.
  • Choose gemini-2.5-flash-image unless you need the quality: gemini-3-pro-image costs about 3.5× more per image.

DeepSeek Models

Chat Models

Standard tier — for general use, balancing efficient performance and price.Cached input applies to prompt prefixes that hit the cache on repeat requests, at roughly 1/12 the uncached input price.

ElevenLabs Models

Text-to-Speech Models

Speech-to-Text Models

Using Models

Simply specify the model ID in your API request:

Model Updates

SaveGate automatically updates model versions to the latest stable releases. For version pinning, use specific model IDs (with date suffix) when available.
Use the /v1/models API endpoint to get the full list of available models with their capabilities and pricing information in real-time.