---
title: "Generate Presentation Async V3"
method: POST
path: "/api/v3/presentation/generate/async"
tags: ["V3 Presentation"]
---

# Generate Presentation Async V3

`POST /api/v3/presentation/generate/async`

Generate a presentation asynchronously.

Use /api/v3/async-task/status/task-xxxxxxxxxx to get the status of presentation.

Create an API Key from your account to access this endpoint.
Authorization: Bearer sk-presenton-xxxxxxxx

## Headers

- `Authorization` string, required — Bearer JWT or API Key

## Request body

- GeneratePresentationRequestV3
  - `content` string, nullable — The content for generating the presentation
  - `slides` SlideContentLayout[], nullable — The content and layout for each slide
    - `content` string, required
    - `layout` string, nullable
  - `n_slides` integer, nullable — Number of slides to generate
  - `instructions` string, nullable — The instruction for generating the presentation
  - `tone` 'default' | 'casual' | 'professional' | 'funny' | 'educational' | 'sales_pitch'
  - `verbosity` 'concise' | 'standard' | 'text-heavy'
  - `content_generation` 'preserve' | 'enhance' | 'condense'
  - `markdown_emphasis` boolean — Whether to emphasize the markdown
  - `web_search` boolean — Whether to enable web search
  - `image_type` 'stock' | 'ai-generated' — Type of image to generate
  - `theme` string, nullable — Theme to use for the presentation. Available themes: edge-yellow, light-rose, mint-blue, professional-blue, professional-dark and your custom themes
  - `language` string, nullable — Language for the presentation
  - `standard_template` string, nullable — Standard template to use for the presentation. Available templates: neo-general, neo-modern, neo-standard, neo-swift, general, modern, standard, swift and your custom templates
  - `smart_design` string, nullable — Design V2 id to use for the smart presentation
  - `include_table_of_contents` boolean — Whether to include a table of contents
  - `include_title_slide` boolean — Whether to include a title slide
  - `allow_access_to_user_info` boolean — Whether to allow access to user's info
  - `files` string[], nullable — Files to use for the presentation. Use /api/v3/files/upload to upload files.
  - `export_as` 'pptx' | 'pdf' | 'png' — Export format
  - `trigger_webhook` boolean — Whether to trigger subscribed webhooks

## Response `200`

Successful Response

- AsyncTaskModel
  - `id` string
  - `status` 'pending' | 'completed' | 'error'
  - `message` string, required
  - `data` object, nullable
  - `error` object, nullable
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/presenton/apis/fastapi.md) · [All operations](https://skmtc.dev/presenton/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/presenton/fastapi/revisions/5dae3adc4ee8/schema)
