Slide Decks
Slide deck assets generated per token
Returns paginated slide decks created by the authenticated token, including in-progress requests (default 20 per page, max 100).
Page number (default 1)
Items per page (default 20, max 100)
Paginated list of slide decks
Unauthorized
GET /slide-decks/get HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"items": [
{
"id": "text",
"url": "https://example.com",
"title": "text",
"status": 1,
"createdOn": "2025-12-07T14:18:17.326Z"
}
],
"totalCount": 1,
"page": 1,
"pageSize": 1,
"totalPages": 1
}Streams the generated slide deck file (PDF or PPT) for the authenticated token.
Slide deck request identifier
Binary slide deck stream
Unauthorized
Slide deck not found or not ready
Upstream asset unavailable
GET /slide-decks/{slideDeckId}/download HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
binaryStreams the generated slide deck file inline for browser previews.
Slide deck request identifier
Inline slide deck stream
Unauthorized
Slide deck not found or not ready
Upstream asset unavailable
GET /slide-decks/{slideDeckId}/preview HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
binaryStreams the slide deck inline without authentication for marketing/demo pages.
Slide deck request identifier
Inline slide deck stream
Slide deck not found or not ready
Upstream asset unavailable
GET /slide-decks/public/{slideDeckId}/preview HTTP/1.1
Host: api.autocontentapi.com
Accept: */*
binaryStreams a whitelisted slide deck URL inline (PDF) without authentication.
Direct URL to the slide deck asset (limited to autocontentapi.blob.core.windows.net)
Inline slide deck stream
Missing or invalid URL
Upstream asset unavailable
GET /slide-decks/public-preview?url=https%3A%2F%2Fexample.com HTTP/1.1
Host: api.autocontentapi.com
Accept: */*
binaryLast updated