Pixxel

List Insights

Responds with the list of inisghts details as JSON.

GET/v0/aoi/{aoiId}/insights
Authorisations
AuthorizationString
Path Parameters
aoiIdstringrequired
ID of the AOI
Query Parameters
idstring
Get a specific insight by it's unique id
statusstring
Filter insights by their status
created_bystring
Filter insights by the creator's user id
created_onstring
Filter insights by the time they were created on. Timestamps should be RFC3339 compliant. For dates, provide values like `2025-04-14T00:00:00Z`
Response
application/json
OK
insightsobject[]
Show child attributes
List Insights
1curl -X GET 'https://api.pixxel.space/v0/aoi/{aoiId}/insights' \
2 -H 'Authorization: YOUR_API_KEY'
Response:
{
"insights": [
{
"name": "string",
"created_at": "string",
"err_msg": "string",
"created_by": "string",
"estimated_time_in_min": 0,
"deleted_at": "string",
"id": "string",
"status": "string",
"input": [
0
],
"output": [
0
],
"metadata": {},
"aoi_id": "string",
"cost": 0,
"progress": 0
}
]
}