POST
/
v0
/
search
Search satellite images
curl --request POST \
  --url https://api.pixxel.space/v0/search \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "start_date": "2023-04-18T11:56:49.865Z",
  "end_date": "2023-05-03T11:56:49.865Z",
  "satellite": {
    "collection_id": "sentinel-2-l2a",
    "satellite_id": "0002a3a3-00a2-4b55-842b-44d8202c6d60"
  },
  "filters": [
    {
      "id": "eo:cloud_cover",
      "min": 0,
      "max": 100
    }
  ],
  "geometry": {
    "coordinates": "<any>",
    "type": "Polygon"
  },
  "skip": 0,
  "limit": 10
}'
{
  "items": {},
  "pagination": {
    "limit": 10,
    "skip": 0,
    "total": 100
  }
}

Authorizations

Authorization
string
header
required

Body

application/json

Search Query Parameters

The body is of type object.

Response

200
application/json

OK

The response is of type object.