Use this endpoint to request a downloadable bundle of selected assets (e.g., satellite imagery or processed outputs) generated during an insight run on a specific AOI. Once the request is made, the system prepares the package and returns a signed URL to securely download it. The endpoint expects a list of desired inputs and/or outputs in the request body. This helps in exporting specific data rather than entire insight results.
PUT
/v0/aoi/{aoi_id}/insights/{insight_id}/download
You need the api key which you can get from the API tab in Organization Settings. The api key is required in almost all the commands
The path parameters aoi_id
and insight_id
are used to uniquely identify the Area of Interest and the insight whose data needs to be packaged for download. These are required to ensure the download operation is targeted to the correct asset set.
Name | Type | Required | Description |
---|---|---|---|
aoi_id | string | Yes | ID of the Area of Interest |
insight_id | string | Yes | ID of the insight to download |
This endpoint does not use query parameters.
The body of the request should contain lists of input and output asset identifiers to be included in the download package. This allows the user to customize the contents of the download, fetching only the data they need from a potentially large set of generated or used files.
Name | Type | Required | Description |
---|---|---|---|
inputs | string[] | No | List of input asset identifiers to include |
outputs | string[] | No | List of output asset identifiers to include |
A successful request returns a 200 OK status with a JSON object containing the insight ID, download status, and a signed URL. This URL can be used to securely download the selected files. The status field helps track whether the download package is ready.
Field | Type | Description |
---|---|---|
id | string | Unique identifier of the insight |
status | string | Current status of the download request |
signed_url | string | Temporary URL for downloading the packaged data |
https://api.pixxel.space/v0/aoi/{aoi_id}/insights/{insight_id}/download
. Include your JSON body and headers.