API Docs

List Transcriptions

Get all your transcriptions with filtering and pagination
GEThttps://api.gettranscribe.ai/transcriptions

Headers

x-api-key: YOUR_API_KEY

Query Parameters

$limitnumber (default: 10) (max: 50)
$skipnumber (default: 0)
folder_idnumber (optional)
platform(Optional) youtube/instagram/tiktok

Example Request

curl -X GET "https://api.gettranscribe.ai/transcriptions?\$limit=20&\$skip=0&\$sort[created_at]=-1" \
  -H "x-api-key: YOUR_API_KEY"

Example Response

{
  "total": 166,
  "limit": 5,
  "skip": 0,
  "data": [
    {
      "id": 166263,
      "platform": "instagram",
      "url": "https://www.instagram.com/p/DWy1RmFAGjF/",
      "thumbnail_url": "https://gettranscribe.s3.us-east-1.amazonaws.com/users/1/20260411-143840_31d7369a-6684-4fee-8a9d-9a1e6fe7a2b6/thumbnail.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=...&X-Amz-Date=...&X-Amz-Expires=...&X-Amz-Signature=...",
      "duration": null,
      "duration_seconds": 100.066,
      "word_count": 251,
      "char_count": 1835,
      "created_at": "2026-04-11T14:38:40.310Z",
      "updated_at": "2026-04-11T14:38:40.310Z",
      "deleted_at": null,
      "folder_id": null,
      "transcription_analysis": null,
      "openai_transcription_analysis_cost": null,
      "openai_transcription_analysis_model": null,
      "analysis_language": null,
      "language": null,
      "prompt": null,
      "source": "api",
      "author": "Daniel Vengoechea",
      "author_id": "1492796409",
      "channel": "emegrowthagency",
      "like_count": -1,
      "comment_count": null,
      "view_count": null,
      "video_description": "Caption from the post when available...",
      "video_width": 1080,
      "video_height": 1920,
      "upload_timestamp": "1775487293",
      "upload_date": "20260406",
      "video_title": "Video by emegrowthagency",
      "generated_title": "Marketing Médico Moderno: Estrategias para Aparecer y Convertir Pacientes",
      "consumption_type": "purchased",
      "download_method": "yt-dlp-proxycheap-dash-audio",
      "proxy_used": true,
      "proxy_provider": "proxycheap"
    }
  ]
}

Note: Example from a live GET with an API key (April 2026). List responses are a lightweight index: they do not include transcription, original_transcription, user_id, download_audio_url, or download_video_url. Use GET /transcriptions/{id} for the full record and signed download URLs. thumbnail_url may still be a presigned S3 URL. In shells, escape $ in query parameters (for example \$limit) or use curl -G --data-urlencode '$limit=10'.