Skip to main content
POST
/
api
/
v3
/
presentation
/
outlines
/
generate
Generate Outlines Sync V3
curl --request POST \
  --url https://api.presenton.ai/api/v3/presentation/outlines/generate \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>",
  "files": [
    "<string>"
  ],
  "n_slides": 123,
  "language": "<string>",
  "tone": "default",
  "verbosity": "standard",
  "content_generation": "preserve",
  "include_title_slide": true,
  "allow_access_to_user_info": true,
  "instructions": "<string>"
}
'
[
  "<string>"
]

Headers

Authorization
string
required

Bearer JWT or API Key

Body

application/json
content
string | null

The content for generating the presentation

files
string[] | null

The files to use for the presentation

n_slides
integer | null

The number of slides to generate

language
string | null

The language for the presentation

tone
enum<string>
default:default

The tone for the presentation

Available options:
default,
casual,
professional,
funny,
educational,
sales_pitch
verbosity
enum<string>
default:standard

The verbosity for the presentation

Available options:
concise,
standard,
text-heavy
content_generation
enum<string> | null

The content generation mode for the presentation

Available options:
preserve,
enhance,
condense
include_title_slide
boolean
default:true

Whether to include a title slide

allow_access_to_user_info
boolean
default:true

Whether to allow access to user's info

instructions
string | null

The instructions for the presentation

Response

Successful Response