The short answer: what the Reve API is (and is not)
The Reve API is Reve’s official REST interface for its image models: you send text prompts, reference images, or edit instructions to api.reve.com/v1/ and receive generated images billed per image through prepaid credits. It is an image-generation API — not a chat platform, not an LLM provider — and you can call it directly or through aggregators that expose Reve models alongside other image APIs behind one key.
The “reve api” search results are polluted with unrelated products, so the first step is knowing which Reve you are reading about. REVE Chat is a customer-service chat tool. The GitHub organization reveal-ai maintains a ComfyUI fork. Some LLM trackers list a “Reve AI” entry that hosts language models with a poor success rate. None of these is the Reve behind the Reve Image model family — the company that markets native 4K generation and layout-aware editing. If the page talks about image generation, you are in the right place.
What the Reve API offers: endpoints, resolution, and formats
Reve’s official help documentation describes three core endpoints, each mapping to one creative operation:
- Create — generate an image from a text description.
- Edit — modify an uploaded image using text instructions.
- Remix — combine text prompts with reference images to produce new variations.
All three run against the same API root. Reve’s API documentation states that requests go to https://api.reve.com/v1/, that setup requires accepting the API License Agreement, purchasing API credits, and receiving access keys, and that the API accepts JPEG, PNG, GIF, WebP, TIFF, and AVIF inputs while returning PNG, JPEG, or WebP outputs.
The headline capability is resolution. Reve’s Reve 2.1 API launch post describes a rendering architecture that generates images at native 4K × 4K — 16 megapixels, with no upscaling step. The post also introduces the layout model behind the output: images are represented as hierarchical, addressable regions, so individual elements can be edited without regenerating the whole image. Reve 2.1 divides the API into ready-to-use endpoints (create and edit) and experimental full-layout-control endpoints that decouple layout creation, editing, and rendering. The same post highlights consistent style and content reference across generations, and a skill.md file that lets coding agents call the API natively.
The Reve API’s three operations — create, edit, remix — all return native 4K images; the 2.1 release adds experimental layout-control endpoints.
The version trajectory matters if you are comparing notes with older content. Reve 2.0 established the native-4K, credit-billed API. The 2.1 update added the layout endpoints and the agent-facing skill.md. Most third-party pages still describe the 2.0 surface, so when someone writes “reve 2.0 api” they usually mean the same create/edit/remix API, and “reve image 2.1 api” refers to the July 2026 update.
Reve API pricing: how credits become cost per image
Reve does not publish a per-image dollar price on its help pages. Pricing is credit-based: every request draws from a prepaid credit balance, and optional features — upscaling, background removal, image resizing, and extended generation time — consume additional credits. The official position is that the exact price list lives in the Pricing tab of the API console.
The one public number with a paper trail comes from TrilogyAI’s analysis of the 2.0 launch. It reports that create, edit, and remix each cost 5 credits per image, that 7,500 credits sell for $10, and that the implied base price is therefore about $0.0067 per image before add-ons. We have not found a conflicting official figure, but treat that as an analyst’s conversion of the published credit structure, not an official quote — the console remains the authoritative price list.
| Cost component | Published facts | Source |
|---|---|---|
| Base image (create/edit/remix) | 5 credits per image; 7,500 credits for $10 → ≈ $0.0067/image | TrilogyAI analysis |
| Upscaling (2×/3×/4×) | Extra credits, proportional to image size | Reve help center + pixazo gateway docs |
| Background removal | Extra credits | Same sources |
| Test-time scaling (effort 1–15) | Values above 1 cost proportionally more credits; >5 rarely improves output | pixazo gateway docs |
| Fit/resize | Free | pixazo gateway docs |
| Rate limits | Apply to all requests; higher limits via sales@reve.com | Reve help center |
All figures reflect sources accessed August 11, 2026. Reve’s console is the only official price list; credit pricing and add-on costs change.
That base price sits in an unusual spot: TrilogyAI’s comparison puts Reve’s implied cost near OpenAI’s low-quality 1024×1024 output tier while Reve advertises native 4K. Before that comparison drives a decision, remember the metric that matters in production: cost per accepted image, not cost per generation. A cheaper model that needs three retries to hold a layout is not cheaper than a pricier one that lands on the first pass. Reve’s layout representation is designed to make edits surgical — change one region, re-render only what changed — which is where its low unit price compounds.
Every Reve API request consumes credits; upscaling, background removal, and higher test-time scaling draw additional credits on top of the base 5-credit cost.
How to call the Reve API
The setup path is short and does not require a credit card up front for evaluation, though access keys are issued after you agree to the license and fund a credit balance:
- Create an account in the Reve API console.
- Agree to the API License Agreement and purchase credits.
- Copy your access keys from the console.
- Call
https://api.reve.com/v1/with your key in the request header.
Reve’s technical documentation — endpoint paths, parameters, response codes — is published in the Docs section of the console rather than on the help center, so the console is also your reference for exact request shapes. The skeleton below shows the call shape:
1 | import requests |
Two operational details are worth knowing before you build on top of it. First, include the X-Reve-Request-Id value from any response when you contact support — it is how Reve’s team locates a specific request. Second, gateway implementations that proxy Reve 2.1 document request parameters such as test_time_scaling (extra model effort, 1–15) and a postprocessing array (upscale, remove_background, fit_image, effect) — the same add-on cost structure you see in the pricing section, exposed as request parameters.
Direct Reve API vs. an aggregator route
You do not have to hold a Reve credit balance to use Reve models. Several gateways resell access: Replicate hosts Reve Create (“API-ready: scale in apps”), pixazo exposes Reve Image 2.1 endpoints, and AI/ML API documents Reve create/edit/remix routes. Modellix is another aggregator — it routes Reve models alongside 210+ image, video, and audio models from 12 providers behind one API key, with pay-as-you-go billing and no monthly fee.
| Question | Direct Reve API | Aggregator route |
|---|---|---|
| Account setup | License agreement + credit purchase + access keys | One signup, one key, free credit to start |
| Billing | Credits in the Reve console | Pay-as-you-go per call, one invoice |
| Model coverage | Reve only | Reve plus 200+ other models |
| Price visibility | Console Pricing tab; ≈ $0.0067/image implied base | Per-model price listed per call |
| Add-ons | Upscale / background removal / test-time scaling in credits | Same operations, billed per call |
| Rate limits | Contact sales@reve.com for higher limits | Aggregator’s own rate policy |
This is where we state the commercial interest plainly: Modellix is an aggregator, and we benefit when you choose the aggregator route. The comparison above is a workflow trade-off, not a claim that either route is cheaper — unit prices differ by route, and the honest way to compare is to price the same model and output on both sides.
For teams already integrating several image or video models, the aggregator argument is operational, not economic: one key, one balance, one log across providers, and per-model price transparency. That is the trade-off the Reve provider page on Modellix exists to serve — you can inspect the Reve route alongside every other provider in the same console, then start with $10–30 of free credit before committing a card.
A single aggregator key reaches Reve and dozens of other image and video models; direct access requires a separate Reve account, credit balance, and key.
Which route fits your integration
Use the decision questions below rather than a blanket rule:
- You only need Reve, and you want the canonical source. Go direct. You get Reve’s own console, its pricing tab, and first-party rate-limit support.
- You are evaluating multiple image models side by side. An aggregator saves you N account setups, N credit balances, and N SDKs — and a free trial credit exists exactly for this evaluation phase.
- You have existing multi-provider traffic. If your pipeline already calls other models through one key, adding Reve to the same gateway beats onboarding a second billing surface.
- You need a contract or high rate limits. Talk to Reve sales directly; aggregators have their own rate policies.
Once you know where Reve fits, the rest of the evaluation is standard image-API diligence: run the same prompt set through the candidate routes, measure retry rates and layout stability, and compute cost per accepted asset. For a broader baseline on image model APIs, our text-to-image API guide walks through the categories of image APIs and how they differ.
FAQ
Is the Reve API free? No. Access keys are issued after you agree to the license and fund a credit balance; there is no free tier documented on Reve’s help pages. Aggregator routes often offer free trial credit on signup instead.
What does the Reve API cost per image? The published credit structure implies about $0.0067 per base image (5 credits per create/edit/remix at 7,500 credits for $10), before add-ons like upscaling and background removal. The official price list is the Pricing tab in the API console.
Does the Reve API work with Python? Yes — it is a plain REST API over HTTPS, so any HTTP client works. Reve’s docs live in the API console; community SDKs and wrappers also exist on GitHub.
What is the difference between Reve 2.0 and Reve 2.1? Reve 2.0 established native 4K generation and the create/edit/remix API. Reve 2.1 (July 2026) added experimental full-layout-control endpoints and the agent-facing skill.md file.
Is the Reve API the same as “Reve AI” on LLM trackers? No. Reve is an image-generation company; “Reve AI” entries on LLM trackers describe a different entity. Check whether the page discusses image generation before treating it as relevant.