Skip to main content
GET
/
v0
/
archives
/
collections
/
{cid}
/
items
/
{id}
Get item
curl --request GET \
  --url https://api.pixxel.space/v0/archives/collections/{cid}/items/{id} \
  --header 'Authorization: <api-key>'
{
  "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": {
    "type": "Polygon",
    "coordinates": "<any>"
  },
  "properties": {
    "altitude": 700,
    "constellation": "TD1",
    "created": "2022-01-01T10:00:00Z",
    "datetime": "2022-06-15T12:00:00Z",
    "description": "Example description of the dataset",
    "eo:cloud_cover": 23.5,
    "gsd": 30,
    "instruments": [
      "VNIR"
    ],
    "license": "CC-BY-4.0",
    "platform": "TD1",
    "proj:code": "EPSG:4326",
    "proj:shape": [
      10980,
      10980
    ],
    "proj:transform": [
      0,
      10,
      500000,
      0,
      -10,
      1000000
    ],
    "rd:anomalous_pixels": 0.01,
    "rd:earth_sun_distance": 1,
    "rd:product_level": "L2A",
    "rd:sat_id": "SAT-123",
    "rd:type": "Reflectance",
    "sci:doi": "10.1234/sci_doi",
    "startdatetime": "2022-01-01T00:00:00Z",
    "title": "Example Title",
    "updated": "2022-06-01T10:00:00Z",
    "view:off_nadir": 5,
    "view:scene_center_lat": 12.3456,
    "view:scene_center_lon": -76.5432,
    "view:sun_azimuth": 135,
    "view:sun_elevation": 45
  },
  "assets": {},
  "links": [
    {
      "href": "https://example.com",
      "rel": "self",
      "title": "Example Link Title",
      "type": "application/json"
    }
  ]
}
📚 View developer guide to learn more

Authorizations

Authorization
string
header
required

Path Parameters

cid
string
required

Collection ID

id
string
required

Item ID

Response

OK

id
string
required

The unique identifier of the item

Example:

"20201211_223832_CS25"

type
string

The type of the item

Example:

"Feature"

collection
string

The collection the item belongs to

Example:

"simple-collection_2"

stac_version
string

The version of the STAC specification

Example:

"1.0.0"

stac_extensions
string[]

The extensions used in the item

Example:
[
"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
string[]

The bounding box of the item

Example:
[
"172.91173669923782",
"1.3438851951615003",
"172.95469614953714",
"1.3690476620161975"
]
geometry
object

The geometry of the item

properties
object
assets
object

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 item

The links of the item