Get a clip
This endpoint retrieves one clip in a project.
HTTP Request
GET https://app.resemble.ai/api/v2/projects/<project_uuid>/clips/<clip_uuid>
URL Parameters | Type | Description |
---|---|---|
clip_uuid | string | UUID of the clip to fetch |
project_uuid | string | UUID of the project to which the clip belongs |
HTTP Response
{
"success": true,
"item": {
"uuid": <string>,
"title": <string>,
"body": <string>,
"voice_uuid": <string>,
"is_public": <boolean>,
"is_archived": <boolean>,
"timestamps": {
"graph_chars": <string[]>,
"graph_times": <float[[]]>,
"phon_chars": <string[]>,
"phon_times": <float[[]]>
},
"audio_src": <string>,
"raw_audio": <any>,
"created_at": <UTC Date>,
"updated_at": <UTC Date>,
}
}
Examples
NodeJS
1
2
3
4
const Resemble = require('@resemble/node')
const resemble = new Resemble('v2', 'YOUR_API_TOKEN')
await resemble.clips.get(projectUuid, clipUuid)
Try it out
API Key:
Project UUID:
Clip UUID: