Get Project

GET https://app.resemble.ai/api/v2/projects/{uuid}

Retrieve details of a specific project.

ParameterTypeRequiredNotes
uuidstringProject UUID (URL parameter).
$curl 'https://app.resemble.ai/api/v2/projects/PROJECT_UUID' \
> -H 'Authorization: Bearer YOUR_API_TOKEN'
1{
2 "success": true,
3 "item": {
4 "uuid": "PROJECT_UUID",
5 "name": "Game NPC Library",
6 "description": "Clips for characters",
7 "is_collaborative": true,
8 "is_archived": false,
9 "created_at": "2024-01-15T10:30:00Z",
10 "updated_at": "2024-01-15T10:32:00Z"
11 }
12}