Skip to main content
POST
/
v0
/
aois
/
{aoi_id}
/
downloads
Create a download request for assets in an AOI
curl --request POST \
  --url https://api.pixxel.space/v0/aois/{aoi_id}/downloads \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "asset_ids": [
    "00173fc9-7ea6-49a6-b030-620df1cf822d",
    "49a6-b030-620df1cf822d-00173fc9-7ea6"
  ]
}'
{
  "download_id": "dc01addf-b6c3-4fa9-9a49-dcdcb4c99229",
  "signed_url": "https://storage.account/download",
  "status": "SUCCESS"
}

Authorizations

Authorization
string
header
required

Path Parameters

aoi_id
string
required

AOI ID

Body

application/json

Download Request

asset_ids
string[]
required
Example:
[
"00173fc9-7ea6-49a6-b030-620df1cf822d",
"49a6-b030-620df1cf822d-00173fc9-7ea6"
]

Response

Created

download_id
string
Example:

"dc01addf-b6c3-4fa9-9a49-dcdcb4c99229"

signed_url
string
Example:

"https://storage.account/download"

status
string
Example:

"SUCCESS"

I