GET
/
v0
/
indices
List all available indices
curl --request GET \
  --url https://api.pixxel.space/v0/indices \
  --header 'Authorization: <api-key>'
{
  "indices": [
    {
      "bands": [
        "<string>"
      ],
      "colormap": "<string>",
      "created_at": "<string>",
      "description": "<string>",
      "expression": "<string>",
      "expression_type": "composite",
      "id": "<string>",
      "lens_satellite_id": "<string>",
      "name": "<string>",
      "org_id": "<string>",
      "rescale": [
        123
      ],
      "satellite_name": "<string>",
      "type": "custom",
      "updated_at": "<string>",
      "user_id": "<string>"
    }
  ],
  "pagination": {
    "total": 100,
    "offset": 0,
    "limit": 10
  }
}

Authorizations

Authorization
string
header
required

Query Parameters

offset
integer
default:0

Offset for pagination

limit
integer
default:10

Limit for pagination

satellite_id
string

Filter by satellite ID

type
string

Filter by index type (custom/preset)

expression_type
string

Filter by expression type

index_id
string

Filter by index ID

Response

200
application/json

OK

The response is of type object.