Flipp REST API (1.0.0)

Download OpenAPI specification:Download

Flipp is a marketing image automation tool that lets you to generate unique social media visuals using simple REST API.

How does it work?

Flipp helps you to save time on making repeating design. Once you made a template with our advanced editor, you can integrate it with your app and make unique social media banners for every single page on your website.

Authentication

Get the info about the current user

Authorizations:
Bearer

Responses

Response samples

Content type
application/json
{
  • "name": "John Doe",
  • "email": "user@example.com"
}

Templates

List all available templates

Authorizations:
Bearer

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Images

Create Image

Authorizations:
Bearer
Request Body schema: application/json
template_id
string
Array of objects (DynamicValue)

Responses

Request samples

Content type
application/json
{
  • "template_id": "agds9fnm0",
  • "values": [
    ]
}

Response samples

Content type
application/json
{}

Screenshots

Take Screenshot

Authorizations:
Bearer
Request Body schema: application/json
url
required
string

Destination URL

format
string
Enum: "jpeg" "png"

Output image format

container
string

DOM element selector

full_page
boolean

Capture full page from top to bottom

mobile
boolean

Emulate mobile viewport and User Agent

width
integer <int32>

Viewport width

height
integer <int32>

Page height. Ignored when capturing full page

agent
string

Browser User-Agent header

dark
boolean

Force dark mode preference

adblock
boolean

Block advertisement on the page

object

Extra browser headers

cookies
object

Extra browser cookies

Responses

Request samples

Content type
application/json
{
  • "format": "png",
  • "container": "#hero",
  • "full_page": false,
  • "mobile": false,
  • "width": 1440,
  • "height": 1440,
  • "agent": null,
  • "dark": false,
  • "adblock": true,
  • "headers": {
    },
  • "cookies": {
    }
}

Response samples

Content type
application/json