Skip to content

List Reusable Sections

GET https://api.slidespeak.co/api/v2/presentation/reusable-sections

Returns the reusable sections that can be inserted when generating a presentation. Pass one of the returned id values as settings.reusable_section_id.

New to reusable sections? See Reusable Sections for what they are and how they insert saved slides into your presentation.


X-API-Key: string

The API key to use for the request.


Terminal window
curl -X GET "https://api.slidespeak.co/api/v2/presentation/reusable-sections" -H "X-API-Key: YOUR_API_KEY"

{
"reusable_sections": [
{
"id": "rs_overview",
"name": "Company overview",
"placement": "beginning",
"slide_count": 3,
"updated_at": "2026-06-23T10:00:00+00:00"
},
{
"id": "rs_security_appendix",
"name": "Security & compliance appendix",
"placement": "end",
"slide_count": 4,
"updated_at": "2026-06-20T08:30:00+00:00"
}
]
}