Skip to content

Get All Templates

GET https://api.slidespeak.co/api/v1/presentation/templates

Returns a list of all available presentation templates, including their names and preview images. Use this endpoint to discover default templates that can be applied when generating new presentations. Helpful for building template selectors or providing users with template options in your application.


Content-Type: string

application/json

X-API-Key: string

The API key to use for the request.


<YOUR_API_KEY>


Terminal window
curl -X GET "https://api.slidespeak.co/api/v1/presentation/templates" -H "Content-Type: application/json" -H "x-api-key: YOUR_API_KEY"

[
{
"name": "default",
"images": {
"cover": "https://app.slidespeak.co/images/themes/default-cover.jpg",
"content": "https://app.slidespeak.co/images/themes/default-content.jpg"
}
},
{
"name": "gradient",
"images": {
"cover": "https://app.slidespeak.co/images/themes/gradient-cover.jpg",
"content": "https://app.slidespeak.co/images/themes/gradient-content.jpg"
}
},
...
]