Download OpenAPI specification:Download
Ingestion API adheres to the STAC (SpatioTemporal Asset Catalog) standard and its extensions, which allows for discovery, search and retrieval of Orbis Earth Observation data products. Read more about accessing Orbis data products."
Returns the root STAC Catalog or STAC Collection, which is the entry point for users to browse with STAC Browser or for search engines to crawl.
{- "id": "string",
- "description": "string",
- "stac_version": "string",
- "links": [
- {
- "href": "string",
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "string"
}
], - "stac_extensions": [
- "string"
], - "title": "string",
- "type": "string",
- "conformsTo": [
- "string"
]
}Provides information about the Collections available in the catalog. Each collection represents a group of STAC Items, which share common metadata.
{- "collections": [
- {
- "id": "string",
- "description": "string",
- "stac_version": "string",
- "links": [
- {
- "href": "string",
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "string"
}
], - "stac_extensions": [
- "string"
], - "title": "string",
- "type": "string",
- "license": "string",
- "extent": {
- "spatial": {
- "bbox": [
- [
- 0,
- 0,
- 0,
- 0
]
]
}, - "temporal": {
- "interval": [
- [
- "string",
- "string"
]
]
}
}, - "keywords": [
- "string"
], - "providers": [
- {
- "name": "string",
- "description": "string",
- "roles": [
- "string"
], - "url": "string"
}
], - "summaries": {
- "property1": [
- null
], - "property2": [
- null
]
}
}
], - "links": [
- {
- "href": "string",
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "string"
}
]
}To get detailed information about a specific collection.
| collection_id required | string (Collection Id) The unique ID of the collection |
{- "id": "string",
- "description": "string",
- "stac_version": "string",
- "links": [
- {
- "href": "string",
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "string"
}
], - "stac_extensions": [
- "string"
], - "title": "string",
- "type": "string",
- "license": "string",
- "extent": {
- "spatial": {
- "bbox": [
- [
- 0,
- 0,
- 0,
- 0
]
]
}, - "temporal": {
- "interval": [
- [
- "string",
- "string"
]
]
}
}, - "keywords": [
- "string"
], - "providers": [
- {
- "name": "string",
- "description": "string",
- "roles": [
- "string"
], - "url": "string"
}
], - "summaries": {
- "property1": [
- null
], - "property2": [
- null
]
}
}Retrieves STAC Items that belong to a specific collection. STAC Items are the most fundamental objects in a STAC API, representing a spatiotemporal asset
| collection_id required | string (Collection Id) The unique ID of the collection |
Bbox (string) or Bbox (null) (Bbox) Attribute bbox will list all products from a given collection within the Area of Interest (AOI). This attribute requires between 4 and 6 values (coordinates) where a comma separates each coordinate. | |
Datetime (string) or Datetime (null) (Datetime) Attribute
| |
Sortby (string) or Sortby (null) (Sortby) The
| |
| page | integer (Page) [ 1 .. 100 ] Default: 1 The |
| limit | integer (Limit) [ 1 .. 10000 ] Default: 10 The |
{- "type": "string",
- "features": [
- {
- "id": "string",
- "type": "string",
- "stac_version": "string",
- "stac_extensions": [
- "string"
], - "geometry": {
- "bbox": [
- 0,
- 0,
- 0,
- 0
], - "type": "Point",
- "coordinates": [
- 0,
- 0
]
}, - "bbox": [
- 0,
- 0,
- 0,
- 0
], - "datetime": "2019-08-24T14:15:22Z",
- "properties": { },
- "links": [
- {
- "href": "string",
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "string"
}
], - "assets": {
- "property1": {
- "href": "string",
- "type": "string",
- "title": "string",
- "description": "string",
- "roles": [
- "string"
], - "properties": { }
}, - "property2": {
- "href": "string",
- "type": "string",
- "title": "string",
- "description": "string",
- "roles": [
- "string"
], - "properties": { }
}
}, - "collection": "string"
}
], - "links": [
- {
- "href": "string",
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "string"
}
], - "numberMatched": 0,
- "numberReturned": 0
}This provides information about a specific STAC Item and its assets.
| collection_id required | string (Collection Id) The unique ID of the collection |
| feature_id required | string (Feature Id) The ID of the feature to get |
{- "id": "string",
- "type": "string",
- "stac_version": "string",
- "stac_extensions": [
- "string"
], - "geometry": {
- "bbox": [
- 0,
- 0,
- 0,
- 0
], - "type": "Point",
- "coordinates": [
- 0,
- 0
]
}, - "bbox": [
- 0,
- 0,
- 0,
- 0
], - "datetime": "2019-08-24T14:15:22Z",
- "properties": { },
- "links": [
- {
- "href": "string",
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "string"
}
], - "assets": {
- "property1": {
- "href": "string",
- "type": "string",
- "title": "string",
- "description": "string",
- "roles": [
- "string"
], - "properties": { }
}, - "property2": {
- "href": "string",
- "type": "string",
- "title": "string",
- "description": "string",
- "roles": [
- "string"
], - "properties": { }
}
}, - "collection": "string"
}Listing by attributes and using the pagination and limit option
Collections (string) or Collections (null) (Collections) Comma separated list of collection ids to get | |
Ids (string) or Ids (null) (Ids) Comma separated list of feature ids to get | |
Bbox (string) or Bbox (null) (Bbox) Attribute bbox will list all products from a given collection within the Area of Interest (AOI). This attribute requires between 4 and 6 values (coordinates) where a comma separates each coordinate. | |
Datetime (string) or Datetime (null) (Datetime) Attribute
| |
Sortby (string) or Sortby (null) (Sortby) The
| |
| page | integer (Page) [ 1 .. 100 ] Default: 1 The |
| limit | integer (Limit) [ 1 .. 10000 ] Default: 10 The |
{- "type": "string",
- "features": [
- {
- "id": "string",
- "type": "string",
- "stac_version": "string",
- "stac_extensions": [
- "string"
], - "geometry": {
- "bbox": [
- 0,
- 0,
- 0,
- 0
], - "type": "Point",
- "coordinates": [
- 0,
- 0
]
}, - "bbox": [
- 0,
- 0,
- 0,
- 0
], - "datetime": "2019-08-24T14:15:22Z",
- "properties": { },
- "links": [
- {
- "href": "string",
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "string"
}
], - "assets": {
- "property1": {
- "href": "string",
- "type": "string",
- "title": "string",
- "description": "string",
- "roles": [
- "string"
], - "properties": { }
}, - "property2": {
- "href": "string",
- "type": "string",
- "title": "string",
- "description": "string",
- "roles": [
- "string"
], - "properties": { }
}
}, - "collection": "string"
}
], - "links": [
- {
- "href": "string",
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "string"
}
], - "numberMatched": 0,
- "numberReturned": 0
}Conducts a full-text search for STAC Items across all collections and returns a catalog of STAC Items that match the search criteria.
| page | integer (Page) [ 1 .. 100 ] Default: 1 The |
Array of Collections (strings) or Collections (null) (Collections) | |
Array of Ids (strings) or Ids (null) (Ids) | |
Array of Bbox (items) or Array of Bbox (items) or Bbox (null) (Bbox) | |
Intersects (any) or Intersects (null) (Intersects) | |
Datetime (string) or Datetime (null) (Datetime) | |
| limit | integer (Limit) [ 1 .. 10000 ] Default: 10 |
Query (object) or Query (null) (Query) | |
Array of Sortby (objects) or Sortby (null) (Sortby) |
{- "collections": [
- "string"
], - "ids": [
- "string"
], - "bbox": [
- 0,
- 0,
- 0,
- 0
], - "intersects": {
- "bbox": [
- 0,
- 0,
- 0,
- 0
], - "type": "Point",
- "coordinates": [
- 0,
- 0
]
}, - "datetime": "string",
- "limit": 10,
- "query": {
- "property1": { },
- "property2": { }
}, - "sortby": [
- {
- "field": "string",
- "direction": "asc"
}
]
}{- "type": "string",
- "features": [
- {
- "id": "string",
- "type": "string",
- "stac_version": "string",
- "stac_extensions": [
- "string"
], - "geometry": {
- "bbox": [
- 0,
- 0,
- 0,
- 0
], - "type": "Point",
- "coordinates": [
- 0,
- 0
]
}, - "bbox": [
- 0,
- 0,
- 0,
- 0
], - "datetime": "2019-08-24T14:15:22Z",
- "properties": { },
- "links": [
- {
- "href": "string",
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "string"
}
], - "assets": {
- "property1": {
- "href": "string",
- "type": "string",
- "title": "string",
- "description": "string",
- "roles": [
- "string"
], - "properties": { }
}, - "property2": {
- "href": "string",
- "type": "string",
- "title": "string",
- "description": "string",
- "roles": [
- "string"
], - "properties": { }
}
}, - "collection": "string"
}
], - "links": [
- {
- "href": "string",
- "rel": "string",
- "type": "string",
- "title": "string",
- "method": "string"
}
], - "numberMatched": 0,
- "numberReturned": 0
}