POST
/
api
/
v1
/
ppt
/
presentation
/
generate
/
async
Generate Presentation Async
curl --request POST \
  --url https://api.presenton.ai/api/v1/ppt/presentation/generate/async \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "content": "<string>",
  "slides_markdown": [
    "<string>"
  ],
  "instructions": "<string>",
  "tone": "default",
  "verbosity": "concise",
  "web_search": false,
  "image_type": "stock",
  "theme": "<string>",
  "n_slides": 123,
  "language": "English",
  "template": "general",
  "include_table_of_contents": false,
  "include_title_slide": true,
  "files": [
    "<string>"
  ],
  "export_as": "pptx"
}'
{
  "id": "<string>",
  "status": "<string>",
  "message": "<string>",
  "error": {},
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "data": {}
}

Headers

Authorization
string
required

The bearer token to authenticate with

Body

application/json

Response

200
application/json

Successful Response

The response is of type object.