Skip to main content

Presentation APIs (1.0.0)

APIs for generating presentations

Generate a presentation

This API endpoint generates a presentation based on the query string provided. The query string is used generate the presentation. The API returns a presentation id which can be used to get the presentation in the future.

Authorizations:
ApiKey
Request Body schema: application/json
query
required
string

The query string to for which to generate a presentation

themeColor
string
Default: "white"
Enum: "white" "blue"

The theme color of the presentation

Responses

Request samples

Content type
application/json
{
  • "query": "string",
  • "themeColor": "white"
}

Response samples

Content type
application/json
{
  • "id": "string",
  • "googleSlides": "string",
  • "title": "string",
  • "files": {
    },
  • "slidePreviews": [
    ]
}

Get a presentation

Request Body schema: application/json
id
required
string

The presentation id

Responses

Request samples

Content type
application/json
{
  • "id": "string"
}

Response samples

Content type
application/json
{
  • "id": "string",
  • "googleSlides": "string",
  • "title": "string",
  • "files": {
    },
  • "slidePreviews": [
    ]
}