API Documentation

Complete reference for GetTranscribe API

Base URL

https://api.gettranscribe.ai
Create Folder
Create a new folder to organize your transcriptions
POSThttps://api.gettranscribe.ai/transcriptions-folders

Headers

Content-Type: application/json
x-api-key: YOUR_API_KEY

Body Parameters

namerequired
string

The name of the folder

parent_idoptional
number

ID 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
  }'