API Docs
Create Folder
Create a new folder to organize your transcriptions
POST
https://api.gettranscribe.ai/transcriptions-foldersHeaders
Content-Type: application/json
x-api-key: YOUR_API_KEY
Body Parameters
namerequiredThe name of the folder
parent_idoptionalID of the parent folder (for subfolders). Leave empty for root folder.
Example Request
curl -X POST https://api.gettranscribe.ai/transcriptions-folders \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"name": "YouTube Videos",
"parent_id": null
}'