Run a Mod

Run the Sticker Generator Mod

Generate custom stickers with clean white borders and transparent background.

POST
/mods/9dc8aeea-ae2f-49a3-bb82-6597699af46c/run
/mods/9dc8aeea-ae2f-49a3-bb82-6597699af46c/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/9dc8aeea-ae2f-49a3-bb82-6597699af46c/run" \
  -H "API-Key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "parameters": {
      "size": "auto",
      "prompt": "string",
      "quality": "auto",
      "background": "auto",
      "moderation": "auto",
      "output_format": "png",
      "output_compression": 100
    }
  }'

Success

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