Item Search
Search STAC items with full-featured filtering.
Retrieve items matching filters. Intended as the standard, full-featured query API.
This method is optional to implement, but recommended.
If this endpoint is implemented on a server, it is required to add a link referring to this endpoint with rel set to search and method set to POST to the links array in GET /.
post/search
Request body
Example request
{
"bbox": [
-110,
39.5,
-105,
40.5
],
"datetime": "2018-02-12T00:00:00Z/2018-03-18T12:31:12Z",
"limit": 10,
"fields": {
"include": [
"id",
"properties.eo:cloud_cover"
],
"exclude": [
"geometry",
"properties.datetime"
]
},
"sortby": [
{
"field": "properties.eo:cloud_cover",
"direction": "asc"
},
{
"field": "id",
"direction": "desc"
}
]
}Response
A feature collection.