Get a template example
curl --request GET \
--url https://api.presenton.ai/api/v3/standard-template/{template_id}/example \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.presenton.ai/api/v3/standard-template/{template_id}/example"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.presenton.ai/api/v3/standard-template/{template_id}/example', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"standard_template": "<string>",
"slides": [
{
"layout": "<string>",
"content": {}
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Generate Presentation using JSON (Without AI)
Get a template example
Return the example presentation associated with a standard template.
GET
/
api
/
v3
/
standard-template
/
{template_id}
/
example
Get a template example
curl --request GET \
--url https://api.presenton.ai/api/v3/standard-template/{template_id}/example \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.presenton.ai/api/v3/standard-template/{template_id}/example"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.presenton.ai/api/v3/standard-template/{template_id}/example', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"standard_template": "<string>",
"slides": [
{
"layout": "<string>",
"content": {}
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Was this page helpful?