GET
/
api
/
v1
/
artifacts
/
{artifactId}
curl -X GET \
  https://studio.dubformer.ai/api/v1/artifacts/1a2b3c4d5e6f7g8h9i0j \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "downloadUrl": "https://storage.dubformer.ai/artifacts/1a2b3c4d5e6f7g8h9i0j?signed=..."
}

Path Parameters

artifactId
string
required
The unique identifier of the artifact to retrieve.

Response

downloadUrl
string
Presigned URL for downloading the entire file.
curl -X GET \
  https://studio.dubformer.ai/api/v1/artifacts/1a2b3c4d5e6f7g8h9i0j \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "downloadUrl": "https://storage.dubformer.ai/artifacts/1a2b3c4d5e6f7g8h9i0j?signed=..."
}

Download the file

After receiving the response with the presigned download URL, you can download the file:
curl -X GET \
  "https://storage.dubformer.ai/artifacts/1a2b3c4d5e6f7g8h9i0j?signed=..." \
  -o downloaded_file.mp4
The download URL is typically valid for a limited time (usually 24 hours). If you need to download the file later, request a new download URL.