List Template Folders
List all template folders in your workspace
Published
GET
/v1/studio/folderscurl -X GET "https://api.orshot.com/v1/studio/folders" \
-H "Authorization: Bearer <ORSHOT_API_KEY>"const res = await fetch("https://api.orshot.com/v1/studio/folders", {
method: "GET",
headers: {
Authorization: "Bearer <ORSHOT_API_KEY>",
},
});
const data = await res.json();import requests
response = requests.get(
"https://api.orshot.com/v1/studio/folders",
headers={"Authorization": "Bearer <ORSHOT_API_KEY>"},
)
data = response.json()$ch = curl_init("https://api.orshot.com/v1/studio/folders");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer <ORSHOT_API_KEY>",
]);
$data = json_decode(curl_exec($ch), true);
curl_close($ch);require "net/http"
require "json"
uri = URI("https://api.orshot.com/v1/studio/folders")
req = Net::HTTP::Get.new(uri)
req["Authorization"] = "Bearer <ORSHOT_API_KEY>"
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(req) }
data = JSON.parse(res.body)Overview#
Returns all template folders in your workspace, in the same order they appear in the dashboard sidebar.
https://api.orshot.com/v1/studio/foldersRequest#
await fetch("https://api.orshot.com/v1/studio/folders", {
method: "GET",
headers: {
Authorization: "Bearer <ORSHOT_API_KEY>",
},
});{
"folders": [
{
"id": 11,
"name": "Social Posts",
"sort_order": 0,
"created_at": "2026-07-11T08:04:37.768124+00:00",
"updated_at": "2026-07-11T08:04:37.768124+00:00"
},
{
"id": 12,
"name": "Certificates",
"sort_order": 1,
"created_at": "2026-07-11T09:12:02.114201+00:00",
"updated_at": "2026-07-11T09:12:02.114201+00:00"
}
]
}Error Responses#
Unauthorized (403)#
{
"error": "Access Forbidden: Invalid API Key"
}Rate Limits#
- 30 requests per minute per API key
Was this page helpful?
Ready to automate?
Start rendering images, PDFs and videos from your templates in under 2 minutes. Free plan, no credit card.
Get your API key- Image, PDF and video generation via API
- Visual editor with AI and smart layouts
- Zapier, Make, MCP and 50+ integrations
- White-label embed for your own app
- 30 free credits — no credit card required