List all assets for a given AOI with optional filtering
curl --request GET \
--url https://api.pixxel.space/v0/aois/{aoi_id}/assets \
--header 'Authorization: <api-key>'
{
"assets": [
{
"aoi_id": "e9767554-550e-4464-a677-b8cf096073ab",
"area_in_sq_m": 0,
"asset_type": "mosaic",
"band_list": [
"B01",
"B02"
],
"centroid": [
77.55,
12.95
],
"created_at": "2022-11-14 12:55:49.125928+00:00",
"date": "2022-11-14",
"description": "This asset is mosaic file",
"geometry": {
"coordinates": [
[
[
123
]
]
],
"type": "<string>"
},
"id": "e9767554-550e-4464-a677-b8cf096073ab",
"name": "Asset-A",
"path": "https://storage.account",
"progress": 0,
"status": "success",
"updated_at": "2022-11-14 12:55:49.125928+00:00",
"visualization_id": "e9767554-550e-4464-a677-b8cf096073ab"
}
],
"pagination": {
"total": 100,
"offset": 0,
"limit": 10
}
}
AOI ID
Offset for pagination
Limit for pagination
OK
The response is of type object
.
curl --request GET \
--url https://api.pixxel.space/v0/aois/{aoi_id}/assets \
--header 'Authorization: <api-key>'
{
"assets": [
{
"aoi_id": "e9767554-550e-4464-a677-b8cf096073ab",
"area_in_sq_m": 0,
"asset_type": "mosaic",
"band_list": [
"B01",
"B02"
],
"centroid": [
77.55,
12.95
],
"created_at": "2022-11-14 12:55:49.125928+00:00",
"date": "2022-11-14",
"description": "This asset is mosaic file",
"geometry": {
"coordinates": [
[
[
123
]
]
],
"type": "<string>"
},
"id": "e9767554-550e-4464-a677-b8cf096073ab",
"name": "Asset-A",
"path": "https://storage.account",
"progress": 0,
"status": "success",
"updated_at": "2022-11-14 12:55:49.125928+00:00",
"visualization_id": "e9767554-550e-4464-a677-b8cf096073ab"
}
],
"pagination": {
"total": 100,
"offset": 0,
"limit": 10
}
}