Skip to main content
POST
/
generate
/
slides
Generate Slides
curl --request POST \
  --url https://api.supapost.so/generate/slides \
  --header 'Content-Type: application/json' \
  --data '
{
  "prompt": "<string>"
}
'
{
  "slides": [
    {
      "name": "Intro",
      "background": {
        "type": "gradient",
        "gradientFrom": "#1a1a2e",
        "gradientTo": "#16213e",
        "gradientAngle": 135
      }
    }
  ],
  "texts": [
    {
      "slideIndex": 0,
      "text": {
        "content": "Rise & Grind",
        "fontSize": 96,
        "fontWeight": 800,
        "x": 90,
        "y": 800,
        "width": 900,
        "color": "#ffffff",
        "textAlign": "center",
        "lineHeight": 1.2,
        "letterSpacing": 0,
        "textTransform": "none",
        "textShadow": {
          "enabled": true,
          "color": "#000000",
          "offsetX": 2,
          "offsetY": 2,
          "blur": 4
        },
        "textBackground": {
          "enabled": true,
          "color": "#000000",
          "paddingX": 12,
          "paddingY": 6
        },
        "textStroke": {
          "enabled": false,
          "color": "#000000",
          "width": 2
        }
      }
    }
  ],
  "images": [
    {
      "slideIndex": 0,
      "imageUrl": "https://cdn.supapost.so/assets/team123/1712000000-bg-slide-1.jpg"
    }
  ]
}
An AI agent creates a multi-slide carousel from a text prompt. The agent generates gradient backgrounds, AI background images (via FLUX), and positioned text elements for each slide on a 1080x1920 canvas.

Authentication

Authorization
string
Bearer token. Bearer <supabase-jwt>.

Body

prompt
string
required
Description of the slideshow you want to create. For example: “5-slide motivational carousel about morning routines”.
{
  "slides": [
    {
      "name": "Intro",
      "background": {
        "type": "gradient",
        "gradientFrom": "#1a1a2e",
        "gradientTo": "#16213e",
        "gradientAngle": 135
      }
    }
  ],
  "texts": [
    {
      "slideIndex": 0,
      "text": {
        "content": "Rise & Grind",
        "fontSize": 96,
        "fontWeight": 800,
        "x": 90,
        "y": 800,
        "width": 900,
        "color": "#ffffff",
        "textAlign": "center",
        "lineHeight": 1.2,
        "letterSpacing": 0,
        "textTransform": "none",
        "textShadow": {
          "enabled": true,
          "color": "#000000",
          "offsetX": 2,
          "offsetY": 2,
          "blur": 4
        },
        "textBackground": {
          "enabled": true,
          "color": "#000000",
          "paddingX": 12,
          "paddingY": 6
        },
        "textStroke": {
          "enabled": false,
          "color": "#000000",
          "width": 2
        }
      }
    }
  ],
  "images": [
    {
      "slideIndex": 0,
      "imageUrl": "https://cdn.supapost.so/assets/team123/1712000000-bg-slide-1.jpg"
    }
  ]
}