Skip to main content
GET
/
presentations
/
{presentation_id}
Presentation Status
curl --request GET \
  --url https://api.example.com/presentations/{presentation_id}
{
  "id": "<string>",
  "title": "<string>",
  "status": "<string>",
  "template_id": "<string>",
  "slide_count": 123,
  "slides": [
    {}
  ],
  "download_url": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>"
}
Get the current status of a presentation, including slide count and download availability.
presentation_id
string
required
UUID of the presentation
id
string
Presentation UUID
title
string
Presentation title
status
string
Status: “pending”, “processing”, “completed”, or “failed”
template_id
string
UUID of the template used
slide_count
integer
Number of slides in the presentation
slides
array
Array of slide objects with details
download_url
string
URL to download the presentation
created_at
string
ISO 8601 timestamp of creation
updated_at
string
ISO 8601 timestamp of last update