Skip to main content
Back to API Platform

P-Image Upscale API

Pruna P-Image Upscale. Fast image upscaling to a target megapixel size, with optional detail and realism enhancement. Integrate this model via REST with endpoint docs, parameters, and code examples.

Image Generation
Img2Img
Credit Cost
0.1 credits
Type
Image

API Endpoint

POST
/api/v1/models/p-image-upscale/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
image
required
url
-
target
integer
4
enhance_details
boolean
false
enhance_realism
boolean
false

Example Outputs

Real outputs generated by this model

View Details

0.1 credits
4.2s

Code Examples

Upscale to 16 megapixels — copy and paste to get started

bash
curl -X POST "https://pixeldojo.ai/api/v1/models/p-image-upscale/run" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "image": "https://...",
    "target": 16
  }'

Response Format

Submit Response (202 Accepted)

json
{
  "jobId": "job_abc123...",
  "status": "pending",
  "statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
  "creditCost": 0.1,
  "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": 0.1,
  "expiresAt": "2026-07-18T05:14:34Z"
}