Run a Mod

Run the Sticker Character Creator Mod

Create stylized character stickers with custom outfits based on your reference images

POST
/mods/f781c14e-aff1-4aa7-ab19-6a88b22e4479/run
/mods/f781c14e-aff1-4aa7-ab19-6a88b22e4479/run

The Authorization access token

Authorization

X-API-Key<token>

API key. Example: "X-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/f781c14e-aff1-4aa7-ab19-6a88b22e4479/run" \
  -H "X-API-Key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "parameters": {
      "reference_image": {
        "type": "image",
        "url": "https://endless.supabase.co/storage/v1/object/public/static/image.png"
      },
      "outfit_description": "string"
    }
  }'

Success

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