Skip to main content
Back to API Platform

Reve 2.1 API

Reve 2.1 — generate from text, edit a single image, or remix up to 8 reference images with frame-level prompt control. Integrate this model via REST with endpoint docs, parameters, and code examples.

Image Generation
Img2Img
Editing
Credit Cost
4 credits
Type
Image

API Endpoint

POST
/api/v1/models/reve/run

Test This Model

Run a real request through the API pipeline and inspect the exact input and output your integration will handle. Uses your credits like any API call; failed runs are refunded automatically.

Parameters

Input parameters accepted by this model

ParameterTypeDefault
prompt
required
string
-
reference_images
array
-
aspect_ratio
enum
auto

Supported Aspect Ratios

1:1
16:9
9:16
4:3
3:4
3:2
2:3
21:9

Code Examples

Text → image — copy and paste to get started

bash
curl -X POST "https://pixeldojo.ai/api/v1/models/reve/run" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A serene mountain landscape at sunset with snow-capped peaks",
    "aspect_ratio": "3:2"
  }'

Response Format

Submit Response (202 Accepted)

json
{
  "jobId": "job_abc123...",
  "status": "pending",
  "statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
  "creditCost": 4,
  "creditsRemaining": 95,
  "expiresAt": "2026-07-18T05:14:34Z"
}

Completed Response

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "images": [
      "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
    ]
  },
  "creditCost": 4,
  "expiresAt": "2026-07-18T05:14:34Z"
}