---
title: "Create Presentation From Json Async V3"
method: POST
path: "/api/v3/presentation/from-json/async"
tags: ["V3 Presentation"]
---

# Create Presentation From Json Async V3

`POST /api/v3/presentation/from-json/async`

Create a presentation from JSON 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

- CreatePresentationFromJsonRequestV3
  - `language` string — The language of the presentation
  - `title` string, nullable — The title of the presentation
  - `standard_template` string — The template to use for the presentation. Available templates: neo-general, neo-modern, neo-standard, neo-swift, general, modern, standard, swift and your custom templates
  - `theme` string, nullable — The theme to use for the presentation. Available themes: edge-yellow, light-rose, mint-blue, professional-blue, professional-dark and your custom themes
  - `slides` CreateSlideFromJsonRequestV1[] — The slides to use for the presentation
    - `id` string, uuid, nullable — The id of the slide to use
    - `layout` string, required — The layout of the slide
    - `content` object, required — The content of the slide
    - `speaker_note` string, nullable — The speaker note of the slide
  - `export_as` 'pptx' | 'pdf' | 'png' — The format to export the presentation as
  - `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)
