Get Clip
GET https://app.resemble.ai/api/v2/projects/{project_uuid}/clips/{clip_uuid}
GET https://app.resemble.ai/api/v2/projects/{project_uuid}/clips/{clip_uuid}
$ curl 'https://app.resemble.ai/api/v2/projects/PROJECT_UUID/clips/CLIP_UUID' \ > -H 'Authorization: Bearer YOUR_API_TOKEN'
1 { 2 "success": true, 3 "item": { 4 "uuid": "CLIP_UUID", 5 "title": "Intro", 6 "body": "Welcome to our show", 7 "voice_uuid": "VOICE_UUID", 8 "voice_name": "Professional Voice", 9 "is_archived": false, 10 "audio_src": "https://...", 11 "character_count": 20, 12 "duration": 2.5, 13 "last_generated_at": "2024-01-15T10:32:00Z", 14 "timestamps": { 15 "graph_chars": ["W", "e", "l", "c", "o", "m", "e"], 16 "graph_times": [[0, 120], [120, 240], ...], 17 "phon_chars": [], 18 "phon_times": [] 19 }, 20 "created_at": "2024-01-15T10:30:00Z", 21 "updated_at": "2024-01-15T10:32:00Z" 22 } 23 }
