Slide Decks

Slide deck assets generated per token

Get slide decks

get

Returns paginated slide decks created by the authenticated token, including in-progress requests (default 20 per page, max 100).

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
pageinteger · min: 1Optional

Page number (default 1)

pageSizeinteger · min: 1 · max: 100Optional

Items per page (default 20, max 100)

Responses
200

Paginated list of slide decks

application/json
get
/slide-decks/get
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
}

Download slide deck

get

Streams the generated slide deck file (PDF or PPT) for the authenticated token.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
slideDeckIdstringRequired

Slide deck request identifier

Responses
200

Binary slide deck stream

application/octet-stream
Responsestring · binary
get
/slide-decks/{slideDeckId}/download
GET /slide-decks/{slideDeckId}/download HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
binary

Preview slide deck

get

Streams the generated slide deck file inline for browser previews.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
slideDeckIdstringRequired

Slide deck request identifier

Responses
200

Inline slide deck stream

Responsestring · binary
get
/slide-decks/{slideDeckId}/preview
GET /slide-decks/{slideDeckId}/preview HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
binary

Public preview slide deck

get

Streams the slide deck inline without authentication for marketing/demo pages.

Path parameters
slideDeckIdstringRequired

Slide deck request identifier

Responses
200

Inline slide deck stream

application/pdf
Responsestring · binary
get
/slide-decks/public/{slideDeckId}/preview
GET /slide-decks/public/{slideDeckId}/preview HTTP/1.1
Host: api.autocontentapi.com
Accept: */*
binary

Public preview slide deck by URL

get

Streams a whitelisted slide deck URL inline (PDF) without authentication.

Query parameters
urlstring · uriRequired

Direct URL to the slide deck asset (limited to autocontentapi.blob.core.windows.net)

Responses
200

Inline slide deck stream

application/pdf
Responsestring · binary
get
/slide-decks/public-preview
GET /slide-decks/public-preview?url=https%3A%2F%2Fexample.com HTTP/1.1
Host: api.autocontentapi.com
Accept: */*
binary

Last updated