P-Image Ideogram API
Ideogram-class text rendering on the Pruna backbone. Pick a thinking budget from 0.1 to 1 credit per image. Integrate this model via REST with endpoint docs, parameters, and code examples.
Get API Key
Create auth keys for apps and agents
See Usage
Track requests, credits, and logs
Buy Credits
Top up prepaid API capacity
API Endpoint
/api/v1/models/p-image-ideogram/runTest 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.
LLM.txt
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/p-image-ideogram.txtOpenAPI Spec
Swagger compatible
Import into Postman, Swagger UI, or generate client SDKs in any language.
/api/openapiParameters
Input parameters accepted by this model
| Parameter | Type | Default |
|---|---|---|
promptrequired | string | - |
thinking | enum | medium |
image_size | enum | 2K |
aspect_ratio | enum | 1:1 |
prompt_upsampling | boolean | true |
output_format | enum | jpg |
seed | integer | - |
Supported Aspect Ratios
See also
Related endpoints on this model — you may need a different apiId for a different operation (e.g. image edit vs generation).
- Alternative/api/v1/models/p-image/run
- Edit/api/v1/models/p-image-edit/run
Example Outputs
Real outputs generated by this model
A lighthouse on a rocky headland during a clearing storm, dramatic clouds breaking into sunlight, long exposure surf, cinematic wide shot
A watercolor botanical study of eucalyptus branches on cold-press paper, soft pigment blooms, muted sage and dusty rose, visible paper texture
A macro shot of frost crystals forming on a windowpane, morning light refracting through the ice, deep blue and white tones, extreme detail
An anime-style street scene after rain, reflective pavement, glowing vending machines, a lone figure with a clear umbrella, cool blue and magenta palette
A farmers market stall at golden hour, crates of heirloom tomatoes and stone fruit, handwritten price cards, backlit dust in the air
An isometric illustration of a tiny bookshop cutaway, three floors of shelves, warm interior lights, soft pastel palette, clean vector style
A mid-century travel poster for a mountain railway, stylized flat shapes, cable car crossing a gorge, limited palette of ochre, teal and off-white
A portrait of an elderly luthier in his workshop, hands resting on an unfinished violin, warm tungsten light, wood shavings on the bench, 85mm shallow focus
A ceramic mug in matte terracotta on a linen surface, single soft window light from the left, gentle shadow falloff, minimal product photography
An overhead flat lay of watercolor supplies on a weathered oak desk, brushes, a ceramic water jar, half-finished botanical study, natural window light
A cozy reading nook by a rain-streaked window, knitted blanket, steaming mug, warm lamp glow, soft film grain, shallow depth of field
An atmospheric wide shot of a fog-covered pine valley at dawn, layered ridgelines fading into pale blue, a single bird in flight, no text
A modernist museum exhibition poster reading "FORM AND SILENCE" in thin uppercase letterforms, generous white space, one bold red geometric shape, Swiss design grid
A bookstore chalkboard sign reading "STAFF PICKS THIS WEEK" in mixed hand-lettered styles with small doodles, warm indoor lighting, shelves softly blurred behind
A vintage enamel road sign reading "MILE 42 REST STOP", chipped paint and rust spots, mounted on a wooden post, wide desert horizon behind it at golden hour
A craft beer label design reading "HOLLOW PINES IPA", woodcut illustration of an owl, three-color print, cream label on an amber bottle, dark moody backdrop
An elegant wedding invitation card reading "Together With Joy" in copperplate script, letterpress deckled edge, dried florals and sage ribbon arranged on ivory linen, overhead flat lay
A city transit mural reading "WESTBOUND" in geometric sans letters, painted on weathered concrete, late afternoon shadows crossing the wall
A retro science fiction paperback cover titled "THE LONG SIGNAL", chrome lettering with a starfield behind it, 1970s airbrush style, orange and violet gradient sky
An enamel pin design laid on linen, circular badge reading "TRAIL CREW EST 1994" around a pine tree emblem, forest green and mustard, soft studio light
A hand-painted storefront window reading "CORNER BAKERY" in gold leaf script with drop shadow, warm morning light, shallow depth of field, pastries visible behind the glass
A vintage travel poster that reads "KYOTO" in tall condensed serif letters, torii gate at sunrise, muted teal and warm cream palette, screen-print texture, subtle paper grain
A bold typographic gig poster reading "NIGHT MARKET" in stacked slab letters, neon pink on deep navy, halftone dots, small print details along the bottom edge
Minimal packaging design for a coffee bag labeled "SLOW ROAST", kraft paper texture, single dark green ink, small caps subtitle reading "single origin", studio product photo on a light backdrop
Code Examples
Typographic poster — copy and paste to get started
curl -X POST "https://pixeldojo.ai/api/v1/models/p-image-ideogram/run" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A typographic travel poster for the French Riviera",
"thinking": "high",
"image_size": "2K",
"aspect_ratio": "2:3"
}'Response Format
Submit Response (202 Accepted)
{
"jobId": "job_abc123...",
"status": "pending",
"statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
"creditCost": 0.5,
"creditsRemaining": 95,
"expiresAt": "2026-08-08T19:39:49Z"
}Completed Response
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"images": [
"https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
]
},
"creditCost": 0.5,
"expiresAt": "2026-08-08T19:39:49Z"
}