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

# Create Presentation From Json Sync V3

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

Create a presentation from JSON synchronously.

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

- PresentationPathAndEditPath
  - `presentation_id` string, uuid, required
  - `path` string, required
  - `edit_path` string, required
  - `credits_consumed` number, 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)
