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

# Generate Presentation Async

`POST /api/v1/ppt/presentation/generate/async`

## Request body

- GeneratePresentationRequest
  - `content` string, required — The content for generating the presentation
  - `slides_markdown` string[], nullable — The markdown for the slides
  - `instructions` string, nullable — The instruction for generating the presentation
  - `tone` 'default' | 'casual' | 'professional' | 'funny' | 'educational' | 'sales_pitch'
  - `verbosity` 'concise' | 'standard' | 'text-heavy'
  - `web_search` boolean — Whether to enable web search
  - `n_slides` integer, nullable — Number of slides to generate. If omitted, model auto-detects slide count.
  - `language` string, nullable — Language for the presentation. If omitted, model auto-detects language.
  - `template` string — Template to use for the presentation
  - `include_table_of_contents` boolean — Whether to include a table of contents
  - `include_title_slide` boolean — Whether to include a title slide
  - `files` string[], nullable — Files to use for the presentation
  - `export_as` 'pptx' | 'pdf' — 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.net/presenton/apis/fastapi.md) · [All operations](https://skmtc.net/presenton/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/presenton/fastapi/versions/5dae3adc4ee8/schema)
