Skip to content

Designs

A design is a reusable creative blueprint that defines the visual structure and output specifications of your marketing assets. It includes at least:

  • one format (dimension, e.g. Facebook feed 1200×628 or IAB 300×250)
  • one element (text, button, image, shape…)

Each layer has configurable properties: colors, opacity, content, positioning, and layer-specific settings. Properties set in the design builder are the defaults — you can override any property at generation time through the API.

INFO

Only designs listed in the Projects page are accessible via API.

Design Types

TypeOutputUse case
StaticPNG, JPEG, PDFSingle-frame assets: social posts, display ads
AnimatedMP4, GIF, HTML5 ZIPMotion content: video ads, animated banners
PDF (Print)Printable PDFSingle-page print: flyers, brochures
Multi-page PDF (Print)Printable PDFMulti-page print: catalogs, presentations

Format compatibility

Design typejpegpngpdfgifhtml5mp4printable PDF
static
animated
printer
printer_multipage

Design type cards

Get Designs

GET/designsAPI Reference

Query Parameters

ParameterTypeRequiredDescription
project_idstring (uuid)NoFilter designs by project UUID.
typestringNoFilter by design type: "static", "animated", "print", "print_multipage".

Response

Returns an array of design objects.

FieldTypeDescription
idstring (uuid)Unique identifier of the design.
namestringName of the design.
typestringDesign type: "static", "animated", "print", or "print_multipage".
created_atintegerUnix timestamp of creation.
updated_atintegerUnix timestamp of last update.
category_namestring | nullDesign category, if assigned.
preview_urlstring (uri)Preview image URL for the first format.

Response Example

json
[
  {
    "id": "64238d01-d402-474b-8c2d-fbc957e9d290",
    "name": "Ad campaign fall 2025",
    "type": "static",
    "created_at": 1649942114,
    "updated_at": 1649942114,
    "category_name": "Fall campaigns",
    "preview_url": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/e0d292f2-ec21-11e9-a539-3c408bf94155/a9b3c668-7b84-4924-adf0-815dae727d32.png"
  },
  {
    "id": "bdf9ab44-f5fd-47ad-881d-a45906901233",
    "name": "Summer video ads",
    "type": "animated",
    "created_at": 1663767647,
    "updated_at": 1663767647,
    "category_name": null,
    "preview_url": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/f1a302g3-dd32-22f0-b640-4d519cf05266/b0c4d779-8c95-5035-beg1-926ebf838e43.png"
  }
]