Skip to main content

STAC Catalog

This section explains the response structure when querying the STAC Root Catalog.

Access imagery and metadata offered from vendors namely Sentinel, Landsat, SkySat, ICEYE, Maxar, and more by the Space42 STAC API.

Endpoint

GET /public/stac/

Include the following header:

x-api-key: YOUR_API_KEY

Example Request (cURL)

curl -H "x-api-key: YOUR_API_KEY" "https://giq.ae/public/stac/"

Example Response (Sample)

{
"stac_version": "1.0.0",
"type": "Catalog",
"id": "abe3ed5f-55a4-99be-5c6e-41a4506737d8",
"title": "Space42 Catalogs",
"description": "Welcome to Space42’s STAC Catalogs. Browse satellite data collections and imagery via STAC endpoints.",
"conformsTo": [
"https://api.stacspec.org/v1.0.0/core",
"https://api.stacspec.org/v1.0.0/collections",
"https://api.stacspec.org/v1.0.0/item-search",
"https://api.stacspec.org/v1.0.0/item-search#fields",
"https://api.stacspec.org/v1.0.0/item-search#sort",
"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json",
"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core",
"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30",
"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson"
],
"links": [
{
"rel": "self",
"href": "https://giq.ae/public/stac/catalogs/abe3ed5f-55a4-99be-5c6e-41a4506737d8",
"type": "application/json",
"title": "Root Catalog"
},
{
"rel": "root",
"href": "https://giq.ae/public/stac/",
"type": "application/json",
"title": "STAC Root Catalog"
},
{
"rel": "search",
"href": "https://giq.ae/public/stac/search",
"type": "application/geo+json",
"title": "STAC Item Search"
},
{
"rel": "child",
"href": "https://giq.ae/public/stac/catalogs/bae06009-98f7-e6bf-a8c3-3237b3268d2c",
"type": "application/json",
"title": "Child Catalog"
},
{
"rel": "preview",
"href": "https://i.imghippo.com/files/xKsJ9115CQg.jpg",
"type": "image/jpeg",
"title": "Preview"
},
{
"rel": "about",
"href": "https://space42.ai/",
"type": "text/html",
"title": "About Space42"
}
]
}

Response Overview

Returns a STAC Catalog object with links to:

  • self
  • root
  • search
  • child catalogs

Response Fields

FieldDescriptionExample
idUnique identifier for the root catalogabe3ed5f-55a4-99be-5c6e-41a4506737d8
titleHuman-readable title of the catalogSpace42 Catalogs
typeSTAC object typeCatalog
descriptionDescription of what the catalog containsWelcome to Space42’s STAC Catalogs...
stac_versionSTAC version used in the response1.0.0
linksArray of links (see below for details)[self, root, search, child, preview, about]
Link RelDescriptionURL
selfLink to the current cataloghttps://giq.ae/public/stac/catalogs/abe3ed5f-55a4-99be-5c6e-41a4506737d8
rootLink to the root of the catalog hierarchyhttps://giq.ae/public/stac/
searchLink to the STAC Search endpointhttps://giq.ae/public/stac/search
childChild catalogs available under this rootVarious (e.g. gIQ workspace, Satellite images)
previewPreview imagehttps://i.imghippo.com/files/xKsJ9115CQg.jpg
aboutExternal description linkhttps://space42.ai/

Use Cases

  • List all child catalogs
  • Navigate to specific data providers
  • Launch STAC item search