Conformance
GET
/stac/conformance
const url = 'https://example.com/api/stac/conformance';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/conformanceSTAC API conformance classes.
Responses
Section titled “ Responses ”Successful Response
Media type application/json
StacConformance
STAC conformance response.
object
conformsTo
required
Conformsto
List of conformance class URIs.
Array<string>
Example generated
{ "conformsTo": [ "example" ]}