GET
/
v0
/
aoi
/
{aoiId}
/
insights
List Insights
curl --request GET \
  --url https://api.pixxel.space/v0/aoi/{aoiId}/insights \
  --header 'Authorization: <api-key>'
{
  "insights": [
    {
      "name": "<string>",
      "created_at": "<string>",
      "err_msg": "<string>",
      "created_by": "<string>",
      "estimated_time_in_min": 123,
      "deleted_at": "<string>",
      "id": "<string>",
      "status": "<string>",
      "input": [
        123
      ],
      "output": [
        123
      ],
      "metadata": {},
      "aoi_id": "<string>",
      "cost": 123,
      "progress": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

aoiId
string
required

ID of the AOI

Query Parameters

id
string

Get a specific insight by it's unique id

status
string

Filter insights by their status

created_by
string

Filter insights by the creator's user id

created_on
string

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

200
application/json

OK

The response is of type object.