Export from Descript
Get Published Project Metadata
Retrieve metadata for a published Descript project by its URL slug. This endpoint provides information about the published project including title, duration, publisher details, privacy settings, and subtitles.
This endpoint requires authentication using a personal token and is subject to rate limiting of 1000 requests per hour per user.
get/published_projects/{publishedProjectSlug}
Path parameters
publishedProjectSlugstring required
The unique URL slug identifying the published project
Response
Successfully retrieved published project metadata.
Example response
{
"download_url": "https://storage.googleapis.com/bucket/file.mp4?X-Goog-Signature=...",
"download_url_expires_at": "2025-01-16T10:30:00.000Z",
"project_id": "12345678-1234-5678-1234-567812345678",
"publish_type": "video",
"privacy": "unlisted",
"metadata": {
"title": "My Video Project",
"duration_seconds": 125.456,
"duration_formatted": "00:02:05",
"published_at": "2025-01-15T10:30:00.000Z",
"published_by": {
"first_name": "Jane",
"last_name": "Doe"
}
},
"subtitles": "WEBVTT\\n\\n00:00:00.000 --> 00:00:02.000\\nWelcome to my video"
}