Example designs
Alpha
The contract may change without notice, and imports created with it are not guaranteed to remain compatible. Not covered by the deprecation policy.
Every payload here is a real design exported with GET /designs/{uuid}/as-import, so each one is a working POST /designs/import/json body rather than a hand-written sketch. Assets are Abyssale-hosted https:// URLs, which means uploads[] comes back empty and steps 2 and 3 are skipped entirely.
Run one
Pick a design below, then substitute your own project — target.project_uuid ships as the placeholder YOUR_PROJECT_UUID and the import fails until you replace it. Get a project UUID from GET /projects.
curl -O https://developers.abyssale.com/examples/welcome-email-banner.json
sed -i '' "s/YOUR_PROJECT_UUID/$PROJECT_UUID/" welcome-email-banner.json
curl -X POST https://api.abyssale.com/designs/import/json \
-H "x-api-key: $API_KEY" \
-H "Content-Type: application/json" \
-d @welcome-email-banner.jsonThen poll status until DONE. To check a payload without creating anything, add ?validate_only=true and expect 204 No Content.
Import as a workspace template instead
Replace the target object with { "kind": "workspace_template" } — it takes no project. See Designs vs Workspace Templates.
The designs
Static first, then animated, then print. Animated cards play their real rendered output — the same MP4 the platform produces, not a mock-up. Each card's collapsed block below the grid holds the payload; anything over 150 lines is abridged there, and the download is always complete.

Welcome email banner
The smallest useful payload: three formats, one font, and only image, logo and text layers. Read this one first.

Voucher email
Four non-standard email formats (600×300 through 800×1200) rather than social presets.
4 formatsbutton3 fonts↓ voucher-email.json
Hiring shoutout
Twelve formats built from shape and text only — no bitmap anywhere, so it imports identically in any workspace.

Travel display campaign
Ten formats over a deliberately lean layer tree — shows format mapping without element complexity on top of it.
10 formatsbutton1 font↓ travel-display-campaign.json
Fitness ad set
Twelve formats sharing one layer set, from 1200×1200 down to 300×50. The only example carrying rating, button, shape and group together.

Event badge
Portrait badge with a qrcode layer, four font families and five image layers.

Testimonial card
rating plus illustration and zero image layers — nothing to upload, nothing to host.
Spring sale — animated
Six formats, a single font, two button layers — the animated payload with the least going on.
Furniture ad — animated
Three formats over a five-second timeline. The clearest look at the top-level animation object — duration and screenshot_at_s, the frame used as the still preview.
Testimonial story — animated
Animated story combining a video layer with rating and button, on top of the static layer model.
Travel video background
A video layer used as the background across seven formats, with the animation timeline that drives it.
QR code — animated
A qrcode layer inside an animated design, which the static examples cannot show.

Promotional poster
Print-ready A3 and A4 in the same design: millimetres, bleed_size, safe_size and cmyk() colors.

Certificate
Print certificate in three formats, the densest print example here: 20 layers over image, logo, shape and text, with three font families.

Two-page leaflet
Two-page print PDF at 105×148 mm. Geometry is top-level and the layers live in pages[], not formats[].
Welcome email banner — abridged (224 lines, 5.7 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Welcome email banner",
"type": "static",
"formats": [
{
"name": "emailing",
"width": 560,
"height": 290,
"background_color": "#FFFFFF"
}
// … 2 more formats
],
"layers": [
{
"name": "bg-image",
"type": "image",
"layout": {
"emailing": {
"x": 0,
"y": 0,
"width": 560,
"height": 290
},
"emailing-v2-11-2021": {
"x": -45,
"y": -36,
"width": 650,
"height": 337
},
"emialing-mailchimp": {
"x": -48,
"y": -37,
"width": 696,
"height": 348
}
},
"properties": {
"default": {
"fitting_type": "cover"
},
"emailing": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/e0d292f2-ec21-11e9-a539-3c408bf94155/a2524c78-cda1-4530-9ea1-214fdb9d5936/assets/b65eb485-2d06-4058-bdf4-fb98fb0d6add.png"
},
"emailing-v2-11-2021": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/e0d292f2-ec21-11e9-a539-3c408bf94155/a2524c78-cda1-4530-9ea1-214fdb9d5936/assets/9828e3b1-10d3-47d9-b58e-2e4e84903ac2.png"
},
"emialing-mailchimp": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/e0d292f2-ec21-11e9-a539-3c408bf94155/a2524c78-cda1-4530-9ea1-214fdb9d5936/assets/23691c8a-ab24-45b9-a849-b21972d94def.png"
}
}
}
// … 4 more layers
]
}Voucher email — abridged (453 lines, 11.0 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Voucher email",
"type": "static",
"formats": [
{
"name": "mail_600x300",
"width": 600,
"height": 300,
"background_color": "#FFFFFF"
}
// … 3 more formats
],
"layers": [
{
"name": "image_bg",
"type": "image",
"layout": {
"mail_600x300": {
"x": 0,
"y": 0,
"width": 600,
"height": 300
},
"mail_800x500": {
"x": 0,
"y": 0,
"width": 800,
"height": 500
},
"mail_800x800": {
"x": 0,
"y": 0,
"width": 800,
"height": 800
},
"mail_800x1200": {
"x": 0,
"y": 0,
"width": 800,
"height": 1200
}
},
"properties": {
"default": {
"fitting_type": "cover",
"alignment": "top center"
},
"mail_600x300": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/e0d292f2-ec21-11e9-a539-3c408bf94155/60fc56c2-fc0a-44b7-bd53-da47fa849fb6/assets/5ca9f1cf-e6dc-41cf-948d-496d22691694.jpeg"
},
"mail_800x500": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/e0d292f2-ec21-11e9-a539-3c408bf94155/60fc56c2-fc0a-44b7-bd53-da47fa849fb6/assets/71ce4979-f242-4265-9e25-d13c0592d22d.jpeg"
},
"mail_800x800": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/e0d292f2-ec21-11e9-a539-3c408bf94155/60fc56c2-fc0a-44b7-bd53-da47fa849fb6/assets/4bcc8338-85fa-4eeb-907c-faec4a047a91.jpeg"
},
"mail_800x1200": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/e0d292f2-ec21-11e9-a539-3c408bf94155/60fc56c2-fc0a-44b7-bd53-da47fa849fb6/assets/5fc6d889-bd89-4c8f-bb0e-62ac4bc583a4.jpeg"
}
}
}
// … 7 more layers
]
}Hiring shoutout — abridged (1361 lines, 33.0 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Hiring shoutout",
"type": "static",
"formats": [
{
"name": "facebook-post",
"width": 1200,
"height": 1200,
"background_color": "#ffffff"
}
// … 11 more formats
],
"layers": [
{
"name": "deco-1",
"type": "shape",
"layout": {
"facebook-post": {
"x": -17,
"y": 2,
"width": 157,
"height": 550
},
"linkedin-square": {
"x": -15,
"y": 2,
"width": 155,
"height": 550
},
"instagram-post": {
"x": -16,
"y": 1,
"width": 142,
"height": 495
},
"medium-rectangle": {
"x": -7,
"y": 0,
"width": 42,
"height": 114
},
"large-rectangle": {
"x": -9,
"y": 0,
"width": 48,
"height": 127
},
"facebook-feed": {
"x": -26,
"y": 1,
"width": 166,
"height": 283
},
"instagram-story": {
"x": -41,
"y": 0,
"width": 221,
"height": 938
},
"half-page": {
"x": -8,
"y": 0,
"width": 58,
"height": 279
},
"wide-skyscraper": {
"x": -9,
"y": 100,
"width": 38,
"height": 202
},
"linkedin-feed": {
"x": -36,
"y": 1,
"width": 176,
"height": 283
},
"leaderboard": {
"x": 160,
"y": -37,
"width": 142,
"height": 60
},
"mobile-banner": {
"x": 75,
"y": -8,
"width": 56,
"height": 21
}
},
"properties": {
"default": {
"background_color": "#ffd763"
}
}
}
// … 8 more layers
]
}Travel display campaign — abridged (875 lines, 20.9 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Travel display campaign",
"type": "static",
"formats": [
{
"name": "facebook-post",
"width": 1200,
"height": 1200,
"background_color": "#FFFFFF"
}
// … 9 more formats
],
"layers": [
{
"name": "image_picture",
"type": "image",
"layout": {
"facebook-post": {
"x": 0,
"y": 0,
"width": 1200,
"height": 1200
},
"linkedin-square1": {
"x": 0,
"y": 0,
"width": 1200,
"height": 1200
},
"square": {
"x": 0,
"y": 0,
"width": 250,
"height": 250
},
"medium-rectangle": {
"x": 0,
"y": 0,
"width": 300,
"height": 250
},
"large-rectangle2": {
"x": 0,
"y": 0,
"width": 336,
"height": 280
},
"wide-skyscraper1": {
"x": 0,
"y": 0,
"width": 160,
"height": 600
},
"instagram-story2": {
"x": 0,
"y": 0,
"width": 1080,
"height": 1920
},
"leaderboard1": {
"x": 0,
"y": 0,
"width": 728,
"height": 90
},
"facebook-feed1": {
"x": 0,
"y": 0,
"width": 1200,
"height": 628
},
"mobile-banner2": {
"x": 0,
"y": 0,
"width": 300,
"height": 50
}
},
"properties": {
"default": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/eabd953b-0029-4787-bc3d-28a071804ba6/v2_ae222891-eb6e-4877-a8a1-89c19d28e0aa.jpeg",
"fitting_type": "cover",
"overlay": {
"direction": "vertical",
"color_1": "#1a09344C",
"color_2": "#1a09344C"
}
}
}
}
// … 5 more layers
]
}Fitness ad set — abridged (1650 lines, 43.5 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Fitness ad set",
"type": "static",
"formats": [
{
"name": "linkedin-square",
"width": 1200,
"height": 1200,
"background_color": "#FFFFFF"
}
// … 11 more formats
],
"layers": [
{
"name": "image_bg",
"type": "image",
"layout": {
"linkedin-square": {
"x": 0,
"y": 0,
"width": 1200,
"height": 1200
},
"facebook-post": {
"x": 0,
"y": 0,
"width": 1200,
"height": 1200
},
"large-rectangle": {
"x": 0,
"y": 0,
"width": 336,
"height": 280
},
"medium-rectangle": {
"x": 0,
"y": 0,
"width": 300,
"height": 250
},
"instagram-post": {
"x": 1,
"y": 1,
"width": 1080,
"height": 1080
},
"facebook-feed": {
"x": 0,
"y": 0,
"width": 1200,
"height": 628
},
"linkedin-feed": {
"x": 0,
"y": 0,
"width": 1200,
"height": 628
},
"leaderboard": {
"x": 0,
"y": 0,
"width": 728,
"height": 90
},
"mobile-banner": {
"x": 0,
"y": 0,
"width": 300,
"height": 50
},
"instagram-story": {
"x": 0,
"y": 0,
"width": 1080,
"height": 1920
},
"half-page": {
"x": 0,
"y": 0,
"width": 300,
"height": 600
},
"wide-skyscraper": {
"x": 0,
"y": 0,
"width": 160,
"height": 600
}
},
"properties": {
"default": {
"filter_name": "duotone",
"filter_properties": {
"name": "deep_purple_beige"
}
},
"linkedin-square": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_4724571c-c30c-40fb-abdd-ac52bf264f4e.jpeg",
"fitting_type": "fill",
"alignment": "top left"
},
"facebook-post": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_dbb12a49-696e-4c9d-bdf4-1e9c207c385b.jpeg",
"fitting_type": "fill",
"alignment": "top left"
},
"large-rectangle": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_13adffd3-1a27-4543-b84b-6dce43a74f93.jpeg",
"fitting_type": "cover"
},
"medium-rectangle": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_83d4932d-2870-471f-b4cd-b28b3b5405e2.jpeg",
"fitting_type": "cover"
},
"instagram-post": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_986751ac-7bdc-4a52-b7f8-499ae45d244b.jpeg",
"fitting_type": "fill",
"alignment": "top left"
},
"facebook-feed": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_b61a961e-ccf9-4a9c-9c1d-5777e7686fd7.jpeg",
"fitting_type": "cover",
"alignment": "middle left"
},
"linkedin-feed": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_e7efb84f-3171-4b71-8696-d65ce50a51f6.jpeg",
"fitting_type": "cover",
"alignment": "middle left"
},
"leaderboard": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_89d662d3-8e24-4021-a8d7-c264d468b4d6.jpeg",
"fitting_type": "cover"
},
"mobile-banner": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_26e6f0c5-9c1b-410e-a879-6d77d47598e7.jpeg",
"fitting_type": "cover"
},
"instagram-story": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_68efe02f-58f6-4028-9b66-4a8b224d2340.jpeg",
"fitting_type": "cover",
"alignment": "top center"
},
"half-page": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_0f56772b-1890-4ef8-990a-499fe1e352c7.jpeg",
"fitting_type": "cover",
"alignment": "top center"
},
"wide-skyscraper": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/d407a19b-30e5-48cd-84ce-f50b8cbe0b17/v2_b088ff8e-baff-471d-b097-53dea153ea7f.jpeg",
"fitting_type": "cover",
"alignment": "top center"
}
}
}
// … 9 more layers
]
}Event badge — abridged (754 lines, 19.2 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Event badge",
"type": "static",
"formats": [
{
"name": "a6",
"width": 1241,
"height": 1754,
"background_color": "#1e1c1c"
}
// … 2 more formats
],
"layers": [
{
"name": "text-50-off",
"type": "text",
"layout": {
"a6": {
"x": 310,
"y": 438,
"width": 621,
"height": 877
},
"instagram-story": {
"x": 100,
"y": 1503,
"width": 556,
"height": 328
},
"emailing": {
"x": 48,
"y": 751,
"width": 278,
"height": 164
}
},
"properties": {
"default": {
"color": "#000000",
"vertical_align": "top",
"text_align": "left"
},
"a6": {
"payload": "Text",
"font_size": 221,
"font": "6156629c-33c5-11ea-9877-92672c1b8195",
"font_weight": 400,
"line_height": 130,
"background_fill": "normal",
"background_mode": "highlight"
},
"instagram-story": {
"payload": "UP TO\n50% OFF\non All Items",
"background_color": "#ffffff",
"font_size": 117,
"font": "61569531-33c5-11ea-9877-92672c1b8195",
"font_weight": 700,
"line_height": 90,
"background_fill": "normal",
"background_mode": "highlight",
"background_radius": 16,
"background_offset_y": -4,
"padding": {
"vertical": 9,
"horizontal": 20
}
},
"emailing": {
"payload": "UP TO\n50% OFF\non All Items",
"background_color": "#ffffff",
"font_size": 58,
"font": "61569531-33c5-11ea-9877-92672c1b8195",
"font_weight": 700,
"line_height": 90,
"background_fill": "normal",
"background_mode": "highlight",
"background_radius": 7,
"background_offset_y": -4,
"padding": {
"vertical": 4,
"horizontal": 10
}
}
},
"hidden": {
"a6": true,
"instagram-story": false,
"emailing": false
}
}
// … 13 more layers
]
}Testimonial card — abridged (452 lines, 10.2 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Testimonial card",
"type": "static",
"formats": [
{
"name": "facebook-post",
"width": 1200,
"height": 1200,
"background_color": "#dfe5ff"
}
// … 2 more formats
],
"layers": [
{
"name": "website",
"type": "text",
"layout": {
"facebook-post": {
"x": 392,
"y": 1056,
"width": 416,
"height": 42
},
"instagram-story": {
"x": 283,
"y": 1599,
"width": 514,
"height": 51
},
"half-page": {
"x": 79,
"y": 500,
"width": 142,
"height": 15
}
},
"properties": {
"default": {
"payload": "www.yoursite.com",
"color": "#4f516c",
"font": "6156660e-33c5-11ea-9877-92672c1b8195",
"font_weight": 400,
"line_height": 110,
"char_spacing": -25,
"vertical_align": "top",
"text_align": "center"
},
"facebook-post": {
"font_size": 42,
"background_fill": "normal",
"background_mode": "highlight"
},
"instagram-story": {
"font_size": 51,
"background_fill": "normal",
"background_mode": "highlight"
},
"half-page": {
"font_size": 15,
"background_fill": "normal",
"background_mode": "highlight"
}
}
}
// … 8 more layers
]
}Spring sale — animated — abridged (1016 lines, 24.7 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Spring sale — animated",
"type": "animated",
"formats": [
{
"name": "facebook-post",
"width": 1200,
"height": 1200,
"background_color": "#FFFFFF"
}
// … 5 more formats
],
"layers": [
{
"name": "bg_image",
"type": "image",
"layout": {
"facebook-post": {
"x": 0,
"y": 0,
"width": 1200,
"height": 1200
},
"instagram-post": {
"x": 0,
"y": 0,
"width": 1080,
"height": 1080
},
"medium-rectangle": {
"x": 0,
"y": 0,
"width": 300,
"height": 250
},
"large-rectangle": {
"x": 0,
"y": 0,
"width": 336,
"height": 280
},
"instagram-story": {
"x": 0,
"y": 0,
"width": 1080,
"height": 1920
},
"half-page": {
"x": 0,
"y": 0,
"width": 300,
"height": 600
}
},
"properties": {
"default": {
"fitting_type": "cover",
"overlay": {
"direction": "vertical",
"color_1": "#1a09344C",
"color_2": "#1a09344C"
}
},
"facebook-post": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/40c79905-b9f6-453a-a1e6-13b9137ae877/v2_21fe6a85-b1d8-457f-a028-28dbdc2601ee.jpeg"
},
"instagram-post": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/40c79905-b9f6-453a-a1e6-13b9137ae877/v2_d239c180-f719-477b-bcfa-624ff5b4660b.jpeg"
},
"medium-rectangle": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/40c79905-b9f6-453a-a1e6-13b9137ae877/v2_ba4beade-81fe-4d0c-992d-5a47ce7b9a04.jpeg"
},
"large-rectangle": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/40c79905-b9f6-453a-a1e6-13b9137ae877/v2_43b2e89c-06ef-4757-9885-175828af58d2.jpeg"
},
"instagram-story": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/40c79905-b9f6-453a-a1e6-13b9137ae877/v2_19a5c158-d828-4034-94fd-eff951b4ea50.jpeg"
},
"half-page": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/40c79905-b9f6-453a-a1e6-13b9137ae877/v2_c6cefa56-066e-4024-8b33-eb6fc74f221f.jpeg"
}
},
"animation": {
"start_at_s": 0.0,
"end_at_s": 8.0
}
}
// … 7 more layers
]
}Furniture ad — animated — abridged (505 lines, 11.7 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Furniture ad — animated",
"type": "animated",
"formats": [
{
"name": "facebook-post",
"width": 1200,
"height": 1200,
"background_color": "#e9e9e9"
}
// … 2 more formats
],
"layers": [
{
"name": "cta",
"type": "button",
"layout": {
"facebook-post": {
"x": 100,
"y": 1006,
"width": 400,
"height": 90
},
"instagram-story": {
"x": 78,
"y": 1596,
"width": 455,
"height": 121
},
"half-page": {
"x": 26,
"y": 513,
"width": 119,
"height": 36
}
},
"properties": {
"default": {
"payload": "Shop Now",
"color": "#000000",
"background_color": "#7a544700",
"font": "6156907e-33c5-11ea-9877-92672c1b8195",
"font_weight": 400,
"line_height": 120,
"alignment": "top left"
},
"facebook-post": {
"font_size": 39,
"radius": 42,
"padding": {
"vertical": 22,
"horizontal": 100
}
},
"instagram-story": {
"font_size": 45,
"radius": 58,
"padding": {
"vertical": 34,
"horizontal": 112
}
},
"half-page": {
"font_size": 13,
"radius": 17,
"padding": {
"vertical": 10,
"horizontal": 26
}
}
},
"animation": {
"start_at_s": 0.0,
"end_at_s": 5.0
}
}
// … 6 more layers
]
}Testimonial story — animated — abridged (513 lines, 11.7 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Testimonial story — animated",
"type": "animated",
"formats": [
{
"name": "instagram-story",
"width": 1080,
"height": 1920,
"background_color": "#996f7b"
}
// … 1 more format
],
"layers": [
{
"name": "video_root",
"type": "video",
"layout": {
"instagram-story": {
"x": 0,
"y": 0,
"width": 1080,
"height": 1920
},
"half-page": {
"x": 0,
"y": 0,
"width": 300,
"height": 600
}
},
"properties": {
"default": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/1e0aa60c-35ce-46e7-9c35-0e3347c7f576/v2_aed4b9b7-8212-49d0-b0f4-f6e2685252a9.mp4"
}
},
"animation": {
"start_at_s": 0.0,
"end_at_s": 8.0
}
}
// … 11 more layers
]
}Travel video background — abridged (813 lines, 19.4 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Travel video background",
"type": "animated",
"formats": [
{
"name": "facebook-post",
"width": 1200,
"height": 1200,
"background_color": "#FFFFFF"
}
// … 6 more formats
],
"layers": [
{
"name": "video_root",
"type": "video",
"layout": {
"facebook-post": {
"x": 0,
"y": 0,
"width": 1200,
"height": 1200
},
"instagram-post": {
"x": 0,
"y": 0,
"width": 1080,
"height": 1080
},
"medium-rectangle": {
"x": 0,
"y": 0,
"width": 300,
"height": 250
},
"large-rectangle": {
"x": 0,
"y": 0,
"width": 336,
"height": 280
},
"facebook-feed": {
"x": 0,
"y": 0,
"width": 1200,
"height": 628
},
"instagram-story": {
"x": 0,
"y": 0,
"width": 1080,
"height": 1920
},
"half-page": {
"x": 0,
"y": 0,
"width": 300,
"height": 600
}
},
"properties": {
"default": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/5c527527-0086-4cf9-bf05-c87e548cb6ad/v2_ff7fb2bc-ff6b-4d20-afd9-a31325a7335f.mp4"
}
},
"animation": {
"start_at_s": 0.0,
"end_at_s": 5.5
}
}
// … 7 more layers
]
}QR code — animated — abridged (723 lines, 16.6 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "QR code — animated",
"type": "animated",
"formats": [
{
"name": "facebook-post",
"width": 1200,
"height": 1200,
"background_color": "#FFFFFF"
}
// … 2 more formats
],
"layers": [
{
"name": "bg_image",
"type": "image",
"layout": {
"facebook-post": {
"x": 0,
"y": 0,
"width": 1200,
"height": 1200
},
"facebook-feed": {
"x": 0,
"y": 0,
"width": 1200,
"height": 628
},
"instagram-story": {
"x": 0,
"y": 0,
"width": 1080,
"height": 1920
}
},
"properties": {
"default": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/9ba95540-af6b-4a9f-bd36-0978e4a19ad1/v2_4baadaab-59e2-45f9-a588-b4a6f3b148ca.jpeg",
"fitting_type": "cover",
"overlay": {
"direction": "vertical",
"color_1": "#00000033",
"color_2": "#00000033"
}
}
},
"animation": {
"start_at_s": 0.0,
"end_at_s": 8.0
}
}
// … 8 more layers
]
}Promotional poster — abridged (457 lines, 10.5 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Promotional poster",
"type": "printer",
"unit": "mm",
"formats": [
{
"name": "a3",
"width": 297,
"height": 420,
"bleed_size": 3,
"safe_size": 3,
"dpi": 300,
"background_color": "cmyk(80,50,0,58)"
}
// … 1 more format
],
"layers": [
{
"name": "tb-image_0",
"type": "image",
"layout": {
"a3": {
"x": 0,
"y": 0,
"width": 297,
"height": 420
},
"a4": {
"x": 0,
"y": 0,
"width": 210,
"height": 297
}
},
"properties": {
"default": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/823845e9-dcbd-4119-a96c-1076190cc17b/v2_c4eb5034-e14a-4da2-8042-2673092d3944.png",
"fitting_type": "fill"
}
},
"hidden": true
}
// … 13 more layers
]
}Certificate — abridged (947 lines, 21.7 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Certificate",
"type": "printer",
"unit": "mm",
"formats": [
{
"name": "a4-horizontal",
"width": 297,
"height": 210,
"bleed_size": 3,
"safe_size": 3,
"dpi": 300,
"background_color": "cmyk(0,0,0,0)"
}
// … 2 more formats
],
"layers": [
{
"name": "rectangle-4",
"type": "shape",
"layout": {
"a4-horizontal": {
"x": 203.19,
"y": 163.54,
"width": 100.66,
"height": 53.31
},
"a6-horizontal": {
"x": 101.25,
"y": 81.77,
"width": 50.16,
"height": 26.66
},
"a3-horizontal": {
"x": 287.34,
"y": 231.29,
"width": 142.35,
"height": 75.4
}
},
"properties": {
"default": {
"background_color": "cmyk(99,46,0,41)"
},
"a4-horizontal": {
"radius": {
"tl": 30,
"tr": 0,
"bl": 0,
"br": 0
}
},
"a6-horizontal": {
"radius": {
"tl": 15,
"tr": 0,
"bl": 0,
"br": 0
}
},
"a3-horizontal": {
"radius": {
"tl": 30,
"tr": 0,
"bl": 0,
"br": 0
}
}
}
}
// … 19 more layers
]
}Two-page leaflet — full payload (142 lines, 4.0 kB)
{
"target": {
"kind": "design",
"project_uuid": "YOUR_PROJECT_UUID"
},
"name": "Two-page leaflet",
"type": "printer_multipage",
"pages": [
{
"background_color": "cmyk(0,0,0,0)",
"layers": [
{
"name": "prenom",
"type": "text",
"layout": {
"x": 17.35,
"y": 34.29,
"width": 72.36,
"height": 32.45
},
"properties": {
"payload": "Nom prenom",
"color": "cmyk(0,0,0,100)",
"font_size": 40,
"font": "6156629c-33c5-11ea-9877-92672c1b8195",
"font_weight": 400,
"line_height": 130,
"vertical_align": "top",
"text_align": "left",
"background_fill": "normal",
"background_mode": "highlight"
}
},
{
"name": "tb-qrcode_0",
"type": "qrcode",
"layout": {
"x": 34.91,
"y": 74.43,
"width": 35,
"height": 35
},
"properties": {
"payload": "Write anything you would like to appear when scanned (can be URL, text, link...)",
"background_color": "cmyk(0,0,0,0)",
"foreground_color": "cmyk(0,0,0,100)",
"margin": 17
}
},
{
"name": "tb-logo_0",
"type": "logo",
"layout": {
"x": 39.55,
"y": 129.63,
"width": 26.24,
"height": 8.46
},
"properties": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/b49d9070-7100-4165-9feb-3c524a41c419/v2_69e85ce8-a129-4fe8-a928-34bd61873f7c.jpeg",
"alignment": "top left"
}
},
{
"name": "tb-image_0",
"type": "image",
"layout": {
"x": 0,
"y": 0,
"width": 104.82,
"height": 26.25
},
"properties": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/b49d9070-7100-4165-9feb-3c524a41c419/v2_d93dfb26-9659-4f76-a4fc-f023f5ca09c0.jpeg",
"fitting_type": "cover"
}
}
]
},
{
"background_color": "cmyk(0,0,0,0)",
"layers": [
{
"name": "prenom",
"type": "text",
"layout": {
"x": 17.86,
"y": 15.66,
"width": 72.36,
"height": 48.69
},
"properties": {
"payload": "Nom prenom",
"color": "cmyk(0,0,0,100)",
"font_size": 40,
"font": "6156629c-33c5-11ea-9877-92672c1b8195",
"font_weight": 400,
"line_height": 130,
"vertical_align": "top",
"text_align": "left",
"background_fill": "normal",
"background_mode": "highlight"
}
},
{
"name": "tb-qrcode_0",
"type": "qrcode",
"layout": {
"x": 34.97,
"y": 68.5,
"width": 35,
"height": 35
},
"properties": {
"payload": "Write anything you would like to appear when scanned (can be URL, text, link...)",
"background_color": "cmyk(0,0,0,0)",
"foreground_color": "cmyk(0,0,0,100)",
"margin": 17
}
},
{
"name": "tb-logo_0",
"type": "logo",
"layout": {
"x": 39.55,
"y": 118.96,
"width": 26.24,
"height": 8.46
},
"properties": {
"src": "https://production-banners.s3-eu-west-1.amazonaws.com/templates/v2/e0d292f2-ec21-11e9-a539-3c408bf94155/b49d9070-7100-4165-9feb-3c524a41c419/v2_69e85ce8-a129-4fe8-a928-34bd61873f7c.jpeg",
"alignment": "top left"
}
}
]
}
],
"unit": "mm",
"width": 105,
"height": 148,
"dpi": 300
}What was changed from the raw export
Two edits, and nothing else — no reordering, no dropped fields:
| Edit | Why |
|---|---|
target added | as-import returns no target — the export describes a design, and only a request needs to say where the new one lands. |
name rewritten | The exports carried internal working names. |
The warnings and version fields of the export envelope are not part of a request body, so the files hold the payload object alone. All fifteen were exported at contract version v2026-08-21.
Fonts are portable, but only because these are Google fonts
A font value is a font UUID, not a family name — "font": "61569857-33c5-…". Google font ids are the same in every workspace, so these payloads import anywhere. A design using a font uploaded to your workspace would export a workspace-scoped id that resolves nowhere else, which is why no such design is listed here. Resolve ids with GET /fonts.
Print designs carry no formats
printer designs use formats[] like static ones, in mm or in with bleed_size, safe_size and cmyk() colors. printer_multipage does not: its geometry is top-level (unit, width, height, dpi) and its content lives in an ordered pages[]. Compare Promotional poster against Two-page leaflet.
What these exports do not carry
Design settings and per-layer generation settings are outside the import contract, so an import reproduces content — formats, layers, properties — and nothing else. A few of these designs also auto-resized text between a minimum and a maximum size; that floor is not representable, so only the rendered size was exported. Configure both in the platform after importing. Full list: Export a Design.
Related
- Design Import — the flow these payloads feed
- Export a Design — what produced them, for your own designs
- Warnings & Error Codes — when an import refuses
- Projects — where to get a
project_uuid
