🔨 In Development
This section is currently being developed and may change.
POSThttps://api.freddy.aitronos.com/v1/images/upscale
Increase the resolution and fidelity of your source images using Freddy upscaling models.
Authorization: Bearer $FREDDY_API_KEY
Get your API key
| Field | Type | Required | Description |
|---|---|---|---|
image_url | string | Yes | Public URL or base64 string for the input image. |
scale | number | No | Upscaling factor (2 or 4). Default: 2. |
format | string | No | Output format (png, jpeg, webp). Default: png. |
JSON object containing upscaled image metadata and a download URL.
{
"data": [
{
"url": "https://api.freddy.aitronos.com/upscaled-images/img_abc123.png",
"original_size": {
"width": 512,
"height": 512
},
"upscaled_size": {
"width": 1024,
"height": 1024
}
}
]
}curl -X POST "https://api.freddy.aitronos.com/v1/images/upscale" \
-H "Authorization: Bearer $FREDDY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/image.jpg",
"scale": 2,
"format": "png"
}'