Layouts

Layouts

Endpoints for Layouts

ℹ️

An apiKey is required to use these endpoints. See Authentication

List many layouts

[GET] https://api.presentationgpt.com/layouts (opens in a new tab)

curl --location --request GET 'https://api.presentationgpt.com/layouts' \
--header 'X-Api-Key: {your_api_key}' \
--header 'Content-Type: application/json'

Response body

{
  "data": [
    {
      "id": string,
      "name": string,
      "elements": [
        {
            "type": string
        }
      ]
    }
  ]
}