API Endpoints
Get project details
Get a detailed project summary including all media files, compositions, and existing publishes.
Returns the project's id, name, drive_id, a map of media files (keyed by display path) with type and duration, a list of compositions with id, name, duration, and media type, and a list of successfully published share pages with their URLs, access levels, and publish times.
Use this to inspect a project's contents before editing or importing media, or to retrieve existing share URLs without triggering a republish.
get/projects/{project_id}
Path parameters
project_idstring uuid required
The project UUID
Response
Project details retrieved successfully
Example response
{
"folder_path": "Clients/Acme/Videos",
"publishes": [
{
"share_url": "https://share.descript.com/view/abc123"
}
]
}