Skip to content
getgeolens.com

Search Post

POST
/stac/search
curl --request POST \
--url https://example.com/api/stac/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "bbox": [ 1 ], "datetime": "example", "collections": [ "example" ], "ids": [ "example" ], "intersects": {}, "limit": 10, "offset": 0 }'

STAC Item Search (POST with JSON body).

Media type application/json
StacSearchBody

JSON body for POST /search.

object
bbox
Any of:
Array<number>
datetime
Any of:
string
collections
Any of:
Array<string>
ids
Any of:
Array<string>
intersects
Any of:
object
key
additional properties
any
limit
Limit

Maximum number of items returned (1-200).

integer
default: 10 >= 1 <= 200
offset
Offset

Number of items to skip for pagination.

integer
0

Successful Response

Example generated
example

Bad request — invalid query parameters or payload

Not found

Validation error

Internal server error