List all Areas of Interest (AOIs) with optional filtering
curl --request GET \
--url https://api.pixxel.space/v0/aois \
--header 'Authorization: <api-key>'{
"aois": [
{
"aoi_id": "e9767554-550e-4464-a677-b8cf096073ab",
"name": "AOI-Bangalore",
"description": "This AOI contains images related to Bangalore",
"satellite_id": "ce5dcc14-8291-4b0c-a278-8c05ec426d22",
"project_id": "ce5dcc14-8291-4b0c-a278-8c05ec426d18",
"images": {},
"eo_bands": [
"B01",
"B02",
"B03"
],
"geometry": {
"coordinates": [
[
[
123
]
]
],
"type": "<string>"
},
"progress": 100,
"status": "success",
"is_favourite": false,
"created_at": "2022-11-14 12:55:49.125928+00:00",
"updated_at": "2022-11-14 12:55:49.125928+00:00",
"user_id": "user-123456",
"area_in_sq_m": 123456.78,
"centroid": [
77.55,
12.95
]
}
],
"pagination": {
"total": 100,
"offset": 0,
"limit": 10
}
}Offset for pagination
Limit for pagination
Filter by creation date
Filter by update date
Filter by AOI ID
Filter by AOI name
Filter by project IDs (comma separated)
OK
Show child attributes
ID of the AOI
"e9767554-550e-4464-a677-b8cf096073ab"
AOI name
"AOI-Bangalore"
AOI description
"This AOI contains images related to Bangalore"
Satellite ID
"ce5dcc14-8291-4b0c-a278-8c05ec426d22"
Project ID this AOI belongs to
"ce5dcc14-8291-4b0c-a278-8c05ec426d18"
Images associated with the AOI
EO bands
["B01", "B02", "B03"]Progress of the AOI from 0 to 100 in percentage
100
Status of the AOI
success, started, running, failed, updating, partial_success "success"
Whether the AOI is marked as favourite
false
AOI creation datetime
"2022-11-14 12:55:49.125928+00:00"
AOI update datetime
"2022-11-14 12:55:49.125928+00:00"
User ID who created the AOI
"user-123456"
Area in square meters
123456.78
Centroid coordinates
[77.55, 12.95]curl --request GET \
--url https://api.pixxel.space/v0/aois \
--header 'Authorization: <api-key>'{
"aois": [
{
"aoi_id": "e9767554-550e-4464-a677-b8cf096073ab",
"name": "AOI-Bangalore",
"description": "This AOI contains images related to Bangalore",
"satellite_id": "ce5dcc14-8291-4b0c-a278-8c05ec426d22",
"project_id": "ce5dcc14-8291-4b0c-a278-8c05ec426d18",
"images": {},
"eo_bands": [
"B01",
"B02",
"B03"
],
"geometry": {
"coordinates": [
[
[
123
]
]
],
"type": "<string>"
},
"progress": 100,
"status": "success",
"is_favourite": false,
"created_at": "2022-11-14 12:55:49.125928+00:00",
"updated_at": "2022-11-14 12:55:49.125928+00:00",
"user_id": "user-123456",
"area_in_sq_m": 123456.78,
"centroid": [
77.55,
12.95
]
}
],
"pagination": {
"total": 100,
"offset": 0,
"limit": 10
}
}