API Docs
Get Transcription
Retrieve a specific transcription by ID
GET
https://api.gettranscribe.ai/transcriptions/{id}Headers
x-api-key: YOUR_API_KEY
Path Parameters
idrequiredThe ID of the transcription to retrieve
Example Request
curl -X GET https://api.gettranscribe.ai/transcriptions/166263 \ -H "x-api-key: YOUR_API_KEY"
Example Response
{
"id": 166263,
"user_id": 1,
"transcription": "First paragraph of the transcript text.\nSecond paragraph continues here...",
"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=...",
"download_video_url": "https://www.instagram.com/p/DWy1RmFAGjF/",
"download_audio_url": "https://gettranscribe.s3.us-east-1.amazonaws.com/users/1/20260411-143840_31d7369a-6684-4fee-8a9d-9a1e6fe7a2b6/compressed_audio.mp3?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,
"s3_video_path": null,
"s3_audio_path": "users/1/20260411-143840_31d7369a-6684-4fee-8a9d-9a1e6fe7a2b6/compressed_audio.mp3",
"s3_thumbnail_path": "users/1/20260411-143840_31d7369a-6684-4fee-8a9d-9a1e6fe7a2b6/thumbnail.jpg",
"original_transcription": "Same text as transcription without the extra newline formatting...",
"transcription_segments": [],
"transcription_words": [],
"analysis_language": null,
"language": null,
"prompt": "Transcribe this audio completely word by word with full accuracy...",
"user_ip": null,
"user_country": null,
"user_country_code": null,
"user_region": null,
"user_city": null,
"user_timezone": null,
"user_latitude": null,
"user_longitude": null,
"user_org": null,
"source": "api",
"author": "Daniel Vengoechea",
"author_id": "1492796409",
"channel": "emegrowthagency",
"like_count": -1,
"comment_count": null,
"view_count": null,
"video_description": "Caption or description 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 for id 166263 (April 2026). download_audio_url and thumbnail_url are presigned S3 URLs that expire. download_video_url matches the Instagram post URL here—not a direct MP4. When a hosted video file exists, this field may point to a CDN instead; always inspect the URL scheme before downloading. duration may be null while duration_seconds is set. transcription_segments and transcription_words may be empty. raw_metadata may be present as a large JSON string and is omitted from this sample.