Get item
Get a STAC item by it's collection and item ID
GET/v0/archives/collections/{cid}/items/{id}
Authorisations
AuthorizationString
Path Parameters
cidstringrequired
Collection IDidstringrequired
Item IDResponse
OKapplication/json
idstringrequired
The unique identifier of the itemExample: "20201211_223832_CS25"typestring
The type of the itemExample: "Feature"collectionstring
The collection the item belongs toExample: "simple-collection_2"stac_versionstring
The version of the STAC specificationExample: "1.0.0"stac_extensionsstring[]
The extensions used in the itemExample: ["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json"]bboxstring[]
The bounding box of the itemExample: ["172.91173669923782","1.3438851951615003","172.95469614953714","1.3690476620161975"]geometryobject
The geometry of the itempropertiesobject
assetsobject
Example
```
{
"B091": {
"href": "<path_to_asset>",
"type": "image/tiff",
"roles": ["data"],
"title": "B091",
"eo:bands": [
{
"fwhm": 0,
"name": "B091",
"solar_irradiance": 1984.75,
"center_wavelength": 490,
"common_name": "red",
}
],
"raster:bands": [
{
"scale": 0.00002,
"nodata": 0,
"offset": 0,
"spatial_resolution": 30
}
]
},
"B013": {
"href": "<path_to_asset>",
"type": "image/png",
"roles": ["data"],
"title": "B013",
"eo:bands": [
{
"fwhm": 0,
"name": "B013",
"common_name": "blue",
"solar_irradiance": 1965.25,
"center_wavelength": 493
}
],
"raster:bands": [
{
"scale": 0.00002,
"nodata": 0,
"offset": 0,
"spatial_resolution": 30
}
]
}
} // The properties of the itemlinksobject[]
The links of the itemGet item
1curl -X GET 'https://api.pixxel.space/v0/archives/collections/{cid}/items/{id}' \2 -H 'Authorization: YOUR_API_KEY'
Response:
{"id": "20201211_223832_CS25","type": "Feature","collection": "simple-collection_2","stac_version": "1.0.0","stac_extensions": ["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json"],"bbox": ["172.91173669923782","1.3438851951615003","172.95469614953714","1.3690476620161975"],"geometry": null,"properties": null,"assets": {},"links": [{"href": "https://example.com","rel": "self","title": "Example Link Title","type": "application/json"}]}