Get an asset
https://api.netflix.developers.gaudiolab.io/v1/assets/{assetId}Retrieves the current state and metadata of an asset.
/assets/{assetId}curl -X GET "https://api.netflix.developers.gaudiolab.io/v1/assets/{assetId}" \
-H "x-api-key: $API_KEY"{
"assetId": "as_7f3a9c",
"status": "awaiting_upload",
"fileName": "string",
"format": "string",
"sourceUrl": "https://...",
"expiresAt": "2026-06-08T12:00:00Z",
"upload": {
"mode": "single",
"url": "https://...",
"chunkSize": 0,
"parts": [
{
"partNumber": 0,
"url": "https://..."
}
],
"completeUrl": "string"
}
}Path parameters
assetIdstringRequiredThe unique identifier of the asset, returned by POST /assets. It references the uploaded media you want to process.
Headers
x-api-keyRequiredYour project API key, sent on every request. Create and manage keys in the dashboard under Settings → API Keys.
Response
assetIdstringRequiredUnique identifier for the asset. Pass it as assetId when creating a job.
statusenumRequiredLifecycle state. awaiting_upload until the bytes are received, then ready to be used in a job, and expired after 72 hours.
Allowed values: awaiting_uploadreadyexpired
fileNamestringOptionalThe file name this asset was created with.
formatstringOptionalAudio format detected from the file (e.g. wav, mp3, aac).
sourceUrlstring (uri)OptionalPresigned GET URL for the stored source audio (remote-URL assets echo the URL you provided). Returned by GET /assets/{assetId} and the multipart complete response; null on the create response since nothing is downloadable yet.
expiresAtstring (date-time)OptionalISO 8601 timestamp at which the asset and its bytes are deleted. Assets are retained for 72 hours after upload.
uploadUploadInstructionOptionalHow to deliver the file's bytes. Present only while the asset's status is awaiting_upload.
modeenumRequiredsingle: one PUT to url. multipart: PUT each chunk in parts, then call completeUrl. remote: nothing to do — the server is fetching your sourceUrl.
Allowed values: singlemultipartremote
urlstring (uri)OptionalPre-signed URL to PUT the entire file to. Single mode only.
chunkSizeintegerOptionalSize in bytes to split the file into before uploading. Multipart mode only.
partsobject[]OptionalOrdered list of pre-signed URLs, one per chunk. Multipart mode only.
partNumberintegerRequired1-based index of the chunk.
urlstring (uri)RequiredPre-signed URL to PUT this chunk to.
completeUrlstringOptionalPath to call once every chunk has been uploaded. Multipart mode only.
codestringRequiredA stable, machine-readable error code you can branch on.
messagestringRequiredA human-readable explanation of what went wrong.
