List Insights
Responds with the list of inisghts details as JSON.
GET/v0/aoi/{aoiId}/insights
Authorisations
AuthorizationString
Path Parameters
aoiIdstringrequired
ID of the AOIQuery Parameters
idstring
Get a specific insight by it's unique idstatusstring
Filter insights by their statuscreated_bystring
Filter insights by the creator's user idcreated_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
OKapplication/json
insightsobject[]
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}]}