Landing Page
GET
/stac/
const url = 'https://example.com/api/stac/';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/STAC Catalog landing page.
Responses
Section titled “ Responses ”Successful Response
Media type application/json
StacCatalog
STAC Catalog / landing page response.
object
type
Type
STAC object type. Always ‘Catalog’ for the landing page.
string
id
required
Id
Stable identifier for the catalog.
string
stac_version
Stac Version
STAC specification version implemented.
string
title
required
Title
Catalog title.
string
description
required
Description
Human-readable catalog description.
string
conformsTo
required
Conformsto
List of conformance URIs declaring which STAC and OGC API standards the catalog implements.
Array<string>
links
required
Links
Catalog navigation links (self, root, search, collections, etc.).
Array<object>
StacLinkA single STAC link object.
Example
{ "type": "Catalog", "stac_version": "1.0.0"}