Get Collections
GET
/stac/collections
const url = 'https://example.com/api/stac/collections';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/stac/collectionsList all STAC Collections.
Responses
Section titled “ Responses ”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>
StacLinkA single STAC link object.
Example generated
{ "collections": [ {} ], "links": [ { "href": "example", "rel": "example", "type": "example", "method": "example" } ]}