Retrieve a video
Fetch a previously uploaded SoundtrackVideo. Returns its source_value (so you can re-run the search), the file URL (when applicable), and the source type.
GET/api/v4/soundtrack/video/{id}/
Path parameters
| Parameter | Description |
|---|---|
id | The video UUID returned by Upload. |
Example request
curl https://api.slipstreammusic.com/api/v4/soundtrack/video/8a4b2c1d-9e7f-4a6b-b3c2-1f8d4e5a7c6b/ \
-H "Authorization: Bearer $PARTNER_API_KEY"Example response — 200 OK
{
"id": "8a4b2c1d-9e7f-4a6b-b3c2-1f8d4e5a7c6b",
"source_type": "file",
"source_value": "5f3e7d9c8b2a4f1e6d0c5b8a3e2f7d9c",
"source_title": "clip.mp4",
"file": "https://media.slipstreammusic.com/.../clip.mp4"
}See The SoundtrackVideo object for field descriptions.
Access control
- Public videos are accessible by anyone.
- Private videos are only accessible by the user who created them.
Errors
| HTTP | When |
|---|---|
| 403 | The video is private and the caller isn't its creator. |
| 404 | The video doesn't exist, or its file has expired. Re-upload from the original. |