Create an upscale job
Submit a file for upscaling. Accepts either:
- JSON body with image_url (publicly accessible URL)
- multipart/form-data with an image file field
One credit is deducted from your monthly quota.
post/jobs
Request body
Example request
{
"image_url": "https://example.com/photo.jpg",
"model": "flare"
}Response
Job created successfully.
Example response
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "completed",
"model": "flare",
"scale": 4,
"original_filename": "photo.jpg",
"result_url": "https://cdn.upres.ai/results/abc123.png"
}