This endpoint lets users retrieve a list of insights for a given AOI. It returns metadata about each insight, including progress, cost, timestamps, and creator information. Users can apply optional filters via query parameters to narrow down insights by ID, status, creator, or creation date. It is especially useful for reviewing all analytical outputs associated with an AOI. Authentication is required through a bearer token.
GET
/v0/aoi/(aoiId)/insights
You need the api key which you can get from the API tab in Organization Settings. The api key is required in almost all the commands
Path parameters are part of the URL and used to specify which AOI you want to fetch insights for. In this endpoint, {aoiId}
is a required path parameter that uniquely identifies the Area of Interest. Without it, the system wouldn’t know which AOI’s insights to return.
Name | Type | Required | Description |
---|---|---|---|
aoiId | string | Yes | Unique ID of the Area of Interest (AOI). |
Query parameters allow you to filter and refine the list of insights returned by the endpoint. For this endpoint, you can use parameters like id
, status
, created_by
, and created_on
to retrieve specific insights, limit results to certain users, or fetch insights created within a given timeframe.
Name | Type | Required | Description |
---|---|---|---|
id | string | No | Fetch a specific insight using its unique ID. |
status | string | No | Filter insights by their current status (e.g., running, completed). |
created_by | string | No | Filter insights based on the creator’s user ID. |
created_on | string | No | Filter by the creation timestamp (RFC3339 format, e.g., 2025-04-14T00:00:00Z ). |
A 200 OK response indicates that the request to list insights was successful. The response contains an array of insight objects with details such as name
, status
, creation time
, creator ID
, processing progress
, cost
, and more. Each object represents a distinct insight generated for the specified AOI.
Field | Type | Description |
---|---|---|
name | string | Name of the insight |
created_at | string | Timestamp when the insight was created |
err_msg | string | Error message if insight generation failed |
created_by | string | User ID of who created the insight |
estimated_time_in_min | integer | Estimated time required to generate the insight |
deleted_at | string | Deletion timestamp, if applicable |
id | string | Unique ID of the insight |
status | string | Status of the insight (e.g., pending, completed, failed) |
input | number[] | Input data IDs used to generate the insight |
output | number[] | Output data IDs resulting from the insight |
metadata | object | Additional metadata about the insight |
aoi_id | string | ID of the AOI the insight belongs to |
cost | number | Cost associated with generating the insight |
progress | number | Progress percentage of insight generation |
https://api.pixxel.space/v0/aoi/{aoiId}/insights