Run a Mod

Run the AI Upscaler V.01a Mod

Mejore y aumente la escala de las imágenes utilizando el Mod AI Upscaler V.01a con opciones para diferentes niveles de aumento.

POST
/mods/929fed4a-a5ec-440b-97ce-5f8a44bea620/run
/mods/929fed4a-a5ec-440b-97ce-5f8a44bea620/run

The Authorization access token

Authorization

API-Key<token>

API key. Example: "API-Key": "<apiKey>"

In: header

Authorization
Required
Bearer <token>

Session token. Example: "Authorization": "Bearer <token>"

In: header

Request Body

application/jsonRequired

parameters
Required
object

curl -X POST "https://api.endless.io/v1/mods/929fed4a-a5ec-440b-97ce-5f8a44bea620/run" \
  -H "API-Key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "parameters": {
      "image_input": {
        "type": "image",
        "url": "https://endless.supabase.co/storage/v1/object/public/static/image.png"
      },
      "aspect_ratio": "1x"
    }
  }'

Success

{
  "type": "image",
  "url": "https://endless.supabase.co/storage/v1/object/public/static/image.png"
}