See the UP42 STAC catalog
To get information about STAC endpoints implemented by UP42 — their versions, links, and used extensions — call the /v2/assets/stac endpoint.
For more information on STAC catalog, see Intro to STAC and STAC Catalog Specification.
Request
GET /v2/assets/stac HTTP/1.1
Host: api.up42.com
Authorization: Bearer {token}
Response
See response example
{
"conformsTo": [
"https://api.stacspec.org/v1.0.0-rc.1/collections",
"https://api.stacspec.org/v1.0.0-rc.1/item-search",
"https://api.stacspec.org/v1.0.0-rc.1/ogcapi-features",
"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter",
"http://www.opengis.net/spec/ogcapi-features-4/1.0/conf/simpletx",
"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter",
"https://api.stacspec.org/v1.0.0-rc.1/item-search#filter:basic-cql",
"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30",
"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson",
"https://api.stacspec.org/v1.0.0-rc.1/item-search#sort",
"https://api.stacspec.org/v1.0.0-rc.1/core",
"https://api.stacspec.org/v1.0.0-rc.1/item-search#filter:cql-text",
"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core",
"https://api.stacspec.org/v1.0.0-rc.1/item-search#filter",
"https://api.stacspec.org/v1.0.0-rc.1/ogcapi-features/extensions/transaction"
],
"links": [
{
"href": "https://api.up42.com/v2/assets/stac/",
"rel": "self",
"type": "application/json"
},
{
"href": "https://api.up42.com/v2/assets/stac/",
"rel": "root",
"type": "application/json"
},
{
"href": "https://api.up42.com/v2/assets/stac/collections",
"rel": "data",
"type": "application/json"
},
{
"href": "https://api.up42.com/v2/assets/stac/search",
"rel": "search",
"type": "application/json",
"method": "POST"
}
],
"stac_extensions": [],
"title": "UP42 Storage",
"description": "UP42 Storage STAC API",
"stac_version": "1.0.0",
"id": "up42-storage",
"type": "Catalog"
}
Parameter | Overview |
---|---|
conformsTo | array of strings The links to standards the UP42 STAC API conforms to. |
links | array of objects A list of links related to the current endpoint. Use to navigate through objects. |
stac_extensions | array of strings A list of STAC extension URLs activated for the current endpoint. For more information, see STAC extensions. |
title | string The title of the STAC catalog. |
description | string The description of the STAC catalog. |
stac_version | string The UP42 STAC API version. |
id | string The ID of the STAC catalog. |
type | string The type of STAC object. |
Parameters of the links array | |
href | string The URL of the related endpoint. |
type | string The media type the link returns. |
rel | string The type of relation of the link in links.href to the current endpoint. |
body | object The request body to be used with links.href to call the endpoint. |
method | string The HTTP method to be used with links.href to call the endpoint. |
title | string The link title. |