post https://api.canopy.umbra.space/archive/search
Search for Archive STAC items with full-featured filtering. Implements the STAC API Item Search Specification and STAC API Filter Extension.
Examples
Example of how to search for items by task id via curl
using CQL2:
curl --request POST \
--url https://api.canopy.umbra.space/archive/search \
--header 'accept: application/geo+json' \
--header 'content-type: application/json' \
--data '
{
"limit": 1,
"filter-lang": "cql2-json",
"filter": {
"op": "=",
"args": [
"ecfe0bed-28d9-4ac6-a835-64d89e47e7c9",
{
"property": "umbra:task_id"
}
]
}
}
And by collect id:
curl --request POST \
--url https://api.canopy.umbra.space/archive/search \
--header 'accept: application/geo+json' \
--header 'content-type: application/json' \
--data '
{
"limit": 1,
"filter-lang": "cql2-json",
"filter": {
"op": "in",
"args": [
["b14a01ad-7c44-43e3-9efc-91167798b00d"],
{
"property": "umbra:collect_ids"
}
]
}
}
Links
For additional documentation of this STAC endpoint: https://github.com/radiantearth/stac-api-spec/tree/release/v1.0.0/item-search
For examples on how to query using CQL2: