Appearance
Get Release Download URL
Generate a signed, time-limited download URL for a release's zip file.
GET /v1/products/:id/releases/:releaseId/downloadPath Parameters
| Parameter | Description |
|---|---|
id | Product ID |
releaseId | Release ID |
Response
json
{
"data": {
"url": "https://api.packedge.dev/dl/rel_xxx?expires=...&signature=..."
}
}Example
bash
curl -X GET "https://api.packedge.dev/v1/products/prd_xxx/releases/rel_xxx/download" \
-H "Authorization: Bearer pk_your_api_key"Notes
- The URL is valid for 24 hours — fetch it promptly
- Returns
404when the release has no stored file
