Skip to main content
Back to API Platform

Ideogram Character API

Generate consistent characters from a single reference image in many styles. Integrate this model via REST with endpoint docs, parameters, and code examples.

Image Generation
Img2Img
Credit Cost
5 credits
Type
image

API Endpoint

POST
/api/v1/models/ideogram-character/run

Parameters

Input parameters accepted by this model

ParameterTypeDefault
prompt
required
string
-
character_reference_image
required
url
-
rendering_speed
enum
Default
style_type
enum
-
aspect_ratio
enum
-
resolution
enum
-
magic_prompt_option
enum
-
seed
number
-
numberOfImages
integer
1

Example Outputs

Real outputs generated by this model

instagram-shareable quote card with elegant serif typography reading a short inspirational quote, soft warm gradient background, minimal composition, premium social media design
View Details

instagram-shareable quote card with elegant serif typography reading a short inspirational quote, soft warm gradient background, minimal composition, premium social media design

3 credits
13.0s
magazine cover composition with sharp legible cover lines reading "FUTURE WORK" in bold serif, secondary lines below, subject occupies the right two-thirds, editorial photography
View Details

magazine cover composition with sharp legible cover lines reading "FUTURE WORK" in bold serif, secondary lines below, subject occupies the right two-thirds, editorial photography

5 credits
19.4s
concert festival poster, custom display typography reading "MIDNIGHT FESTIVAL · OCT 24", layered visual elements, retro 70s aesthetic with modern typography
View Details

concert festival poster, custom display typography reading "MIDNIGHT FESTIVAL · OCT 24", layered visual elements, retro 70s aesthetic with modern typography

5 credits
19.2s
literary fiction book cover, bold title "The Last Architect" set in elegant serif, author name below, atmospheric photography behind, premium hardcover quality
View Details

literary fiction book cover, bold title "The Last Architect" set in elegant serif, author name below, atmospheric photography behind, premium hardcover quality

7 credits
19.2s
vintage storefront with a custom shop name "BAKER & SONS" hand-painted on the awning, warm afternoon light, photorealistic
View Details

vintage storefront with a custom shop name "BAKER & SONS" hand-painted on the awning, warm afternoon light, photorealistic

5 credits
16.7s
editorial product shot with sharp legible headline overlay reading "NEW SEASON", bold serif typography, magazine cover composition
View Details

editorial product shot with sharp legible headline overlay reading "NEW SEASON", bold serif typography, magazine cover composition

5 credits
16.7s
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
View Details

a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."

5 credits
18.9s
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
View Details

a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."

5 credits
18.8s
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
View Details

a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."

5 credits
18.9s

Code Examples

Copy and paste to get started

bash
curl -X POST "https://pixeldojo.ai/api/v1/models/ideogram-character/run" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A beautiful mountain landscape at golden hour",
    "aspect_ratio": "1:1"
  }'

Response Format

Submit Response (202 Accepted)

json
{
  "jobId": "job_abc123...",
  "status": "pending",
  "statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
  "creditCost": 5,
  "creditsRemaining": 95,
  "expiresAt": "2025-01-23T12:00:00Z"
}

Completed Response

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "images": [
      "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
    ]
  },
  "creditCost": 5,
  "expiresAt": "2025-01-23T12:00:00Z"
}