The STAC API defines a RESTful JSON-based web API to browse and query SpatioTemporal Asset Catalog (STAC) objects. While the core STAC specification provides a structure and language to describe assets, users usually want to access a subset of the entire catalog, such as for a certain date range, in a particular area of interest, or matching properties they care about. STAC API extensions specify those query parameters, and compliant servers return STAC Item objects that match the user's preferences. A lot of additional functionality can added through the OGC API family of standards, particularly OGC API - Features (OAFeat, for our shorthand). Notes on implementation recommendations may be found here.
The core of STAC API simply returns a valid STAC Catalog and a description
of what parts of the fuller STAC API specification it conforms to. The links
section of the Catalog is the jumping
off point for the more powerful capabilities - it contains a list of URL's, each described by particular link
'relationships' (rel
) to indicate their functionality. Note that the STAC Core specification provides
most all the content of API responses - the STAC API is primarily concerned with the return of STAC
Item and Collection objects via a
RESTful web API. See the rendered OpenAPI document for more details.
There are then two major sets of functionality that build on the core, which are designed to be complementary, letting implementations choose which parts they want to utilize. Most every STAC API implements at least one, and many follow two or all three.
The item search functionality is one of the most common, provided by the search
rel often
located at a /search
endpoint. It re-uses all of the OAFeat query
parameters specified in their 'core', and adds a
couple more. It does not require a full implementation of OAFeat, it is instead a simplified construct that can run a
search across any set of indexed STAC Item
objects. See the rendered OpenAPI
document for more details.
The other most common set of functionality is Collections. This is implemented with the /collections
endpoint and linked to with the data
relation. The response is a complete list of available STAC Collection
entities. Each individual collection resource can be accessed with the endpoints like /collection/{collectionId}
by collection ID. This is a subset of the functionality defined by the STAC API - Features conformance class.
This general pattern is defined in OAFeat's Feature Collections as part of OGC API - Features Part 1, but STAC is currently just using a subset of the full OAFeat conformance class, so for now it is specified here. STAC's Collection extends the OGC Collection with a handful of additional fields. STAC APIs are expected to return STAC compliant Collections.
The other major functionality for a STAC API is to serve STAC Collection and Item objects through
the OGC API - Features endpoints. This enables any OAFeat client
to access STAC Item objects in the same way they do any other data. Every STAC Collection becomes available at the
/collections
endpoint (making this a superset of the Collections functionality), with each
/collections/{collectionId}/items
endpoint allowing search of the items
in that single collection. For STAC, this means implementing OGC API - Features
Core, as well as
following their GeoJSON and
OpenAPI options, since STAC
is always in GeoJSON and OpenAPI is used to specify STAC API. Full compliance involves splitting STAC Item
objects into
individual /collections/{collectionId}/items
endpoints that expose querying single collections, as OAFeat does
not currently allow cross-collection search. And it adds a few other requirements, which are highlighted in the
features description, in order to help STAC implementors understand OAFeat without having to
read the full spec from scratch. See the rendered OpenAPI document
for more details.
Both STAC API and OAFeat allow 'extensions' that can be added for additional functionality. The STAC community has
created a number of extensions to OAFeat, in order to meet requirements of its implementors, and the complete list
can be found in the extensions document, which links to each of them and details their maturity .
These are specified in OpenAPI, which works cleanly when the new functionality is a new api location (a complete
resource, or adding POST to an existing one). Many of the additions, however, are done at the parameter or response
level, like adding a sortby
field to return ordered results. To make these reusable by both Item Search and OAFeat,
in STAC they are specified in the fragments/ directory, where the core functionality is described.
Each extension is made specifically against a part of the STAC API, so that it can be specified as a conformance
class (to say, for example, that item-search supports sortby
but ogcapi-features does not). But if it is based
on a fragment then it will likely just be a thin wrapper to declare the conformance. This is a bit less than ideal,
but it seemed to be the best approach that actually works with OpenAPI.
We are working to fully align STAC's OAFeat extensions to be the same as the OGC API building blocks being worked on, so that every STAC extension is specified at the OGC API level. The end goal is for STAC API to just present a curated set of extension options.
This version of STAC API depends on OGC API - Features - Part 1: Core Version 1.0. Future versions will likely depend on OGC API Common and additional parts of Features as components evolve and mature.
This version of STAC API is intended to work with any STAC core specification version 0.9.x or 1.x.x (included betas), but is not
designed to work with STAC 2.0 and above (since we use SemVer it may introduce backwards incompatible changes).
The STAC API spec is released with the latest stable STAC core specification version included in the /stac-spec
directory as a submodule. To determine which version it is just check the
/stac-spec/CHANGELOG.md
for the topmost version & release date.
As STAC APIs follow a RESTful model, a core principal of this is the use of HTTP Request Methods ("verbs") and
the Content-Type
header to drive behavior on resources ("nouns") - the endpoints listed below.
The following table describes the service resources available in a full STAC API implementation. Note that the 'Endpoint' column is more of an example in some cases. OGC API makes some endpoint locations required, those will be bolded below.
Endpoint | Specified in | Link Relationship | Returns | Description |
---|---|---|---|---|
/ |
Core | root | Catalog | Extends / from OAFeat to return a full STAC catalog. |
/search |
Item Search | search | ItemCollection | Retrieves a group of Item objects matching the provided search predicates, probably containing search metadata from the search extension |
/collections |
OAFeat | data | JSON | Object with a list of Collection objects contained in the catalog and links |
/conformance |
OAFeat | conformance | JSON | Info about standards to which the API conforms |
/api |
OAFeat | service-desc | OpenAPI 3.0 JSON | The OpenAPI definition of the endpoints in this service |
/collections/{collectionId} |
OAFeat | collection | Collection | Returns single Collection JSON |
/collections/{collectionId}/items |
OAFeat | items | ItemCollection | GeoJSON FeatureCollection-conformant entity of Item objects in collection |
/collections/{collectionId}/items/{featureId} |
OAFeat | item | Returns single Item (GeoJSON Feature). This relation is usually not used in OAFeat implementations. |
STAC API is evolving to utilize OAFeat's
'Conformance'
JSON structure. For
STAC API 1.0.0-beta.4 we declare new STAC Conformance classes, with the core ones detailed in the table below. STAC
Features requires the core OAFeat conformance classes, and declares that those endpoints return
STAC Collection and Feature objects.
The core STAC conformance classes communicate the conformance JSON only in the root (/
) document, while OGC API
requires they also live at the /conformance
endpoint. STAC's conformance structure is detailed in the
core. Note all
conformance URI's serve up a rendered HTML version of the corresponding OpenAPI document at the given location.
NOTE: By 1.0.0 we aim to have requirements classes specified in detail, as testable assertions, like OGC does, but for now the core reference is just this spec document and the OpenAPI yaml. We also desire to have the URI's for conformance to actually resolve to machine-readable information clients can use.
Name | Specified in | Conformance URI | Description |
---|---|---|---|
STAC Core | Core | https://api.stacspec.org/v1.0.0-beta.4/core | Specifies the STAC Landing page / , communicating conformance and available endpoints. |
Item Search | Item Search | https://api.stacspec.org/v1.0.0-beta.4/item-search | Enables search of all STAC Item objects on the server, with the STAC [/search](#stac-api-endpoints) endpoint. |
STAC Features | STAC API - Features | https://api.stacspec.org/v1.0.0-beta.4/ogcapi-features | Specifies the use of OGC API - Features to serve STAC Item and Collection objects |
Collections | Collections | https://api.stacspec.org/v1.0.0-beta.4/collections | Specifies the use of a subset of OGC API - Features to serve Collection objects |
Additional conformance classes are specified in the STAC Extensions.
When all three conformance classes (Core, Features, Item Search) are implemented, the relationships among
various resources are shown in the following diagram. In each node, there is also a self
and root
link
that are not depicted to keep the diagram more concise.
The Landing Page will at least have the following conformsTo
and links
:
{
"stac_version": "1.0.0",
"id": "example-stac",
"title": "A simple STAC API Example",
"description": "This Catalog aims to demonstrate the a simple landing page",
"type": "Catalog",
"conformsTo" : [
"https://api.stacspec.org/v1.0.0-beta.4/core",
"https://api.stacspec.org/v1.0.0-beta.4/item-search",
"https://api.stacspec.org/v1.0.0-beta.4/ogcapi-features",
"https://api.stacspec.org/v1.0.0-beta.4/collections",
"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",
"type": "application/json",
"href": "https://stacserver.org"
},
{
"rel": "root",
"type": "application/json",
"href": "https://stacserver.org"
},
{
"rel": "conformance",
"type": "application/json",
"href": "https://stacserver.org/conformance"
},
{
"rel": "service-desc",
"type": "application/vnd.oai.openapi+json;version=3.0",
"href": "https://stacserver.org/api"
},
{
"rel": "service-doc",
"type": "text/html",
"href": "https://stacserver.org/api.html"
},
{
"rel": "data",
"type": "application/json",
"href": "https://stacserver.org/collections"
},
{
"rel": "child",
"type": "application/json",
"href": "https://stacserver.org/collections/sentinel-2",
},
{
"rel": "child",
"type": "application/json",
"href": "https://stacserver.org/collections/landsat-8",
},
{
"rel": "search",
"type": "application/geo+json",
"href": "https://stacserver.org/search"
}
]
}