Skip to content
getgeolens.com

Get Collections

GET
/stac/collections
curl --request GET \
--url https://example.com/api/stac/collections

List all STAC Collections.

Successful Response

Media type application/json
StacCollectionListResponse

STAC collections list response.

object
collections
required
Collections

List of STAC collections.

Array<object>
object
key
additional properties
any
links
required
Links

Top-level collection navigation links.

Array<object>
StacLink

A single STAC link object.

object
href
required
Href

Target URL of the link.

string
rel
required
Rel

Link relation type (e.g. ‘self’, ‘root’, ‘parent’, ‘item’, ‘data’).

string
type
Any of:
string
method
Any of:
string
Example generated
{
"collections": [
{}
],
"links": [
{
"href": "example",
"rel": "example",
"type": "example",
"method": "example"
}
]
}