API Documentation
Complete reference for GetTranscribe API
Base URL
https://api.gettranscribe.ai
List Folders
Retrieve all your folders for organization
GET
https://api.gettranscribe.ai/transcriptions-folders
Headers
x-api-key: YOUR_API_KEY
Query Parameters
$limit
number (default: 50)$sort[name]
number (1 for ascending, -1 for descending)Example Request
curl -X GET "https://api.gettranscribe.ai/transcriptions-folders?\$limit=50&\$sort[name]=1" \ -H "x-api-key: YOUR_API_KEY"
Example Response
{ "total": 5, "limit": 50, "skip": 0, "data": [ { "id": 27, "name": "Box Opening", "user_id": 2, "parent_id": 25, "created_at": "2025-05-21T12:46:56.165Z", "updated_at": "2025-05-21T12:46:56.165Z", "deleted_at": null }, { "id": 23, "name": "Founder Story", "user_id": 2, "parent_id": 22, "created_at": "2025-05-21T12:46:06.067Z", "updated_at": "2025-05-21T12:46:06.067Z", "deleted_at": null } ] }