Search for satellite images using various filters and parameters
curl --request POST \
--url https://api.pixxel.space/v0/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"satellite": {
"collection_id": "sentinel-2-l2a",
"satellite_id": "0002a3a3-00a2-4b55-842b-44d8202c6d60"
},
"start_date": "2023-04-18T11:56:49.865Z",
"end_date": "2023-05-03T11:56:49.865Z",
"filters": [
{
"id": "eo:cloud_cover",
"min": 0,
"max": 100
}
],
"geometry": {
"coordinates": "<unknown>",
"type": "Polygon"
},
"skip": 0,
"limit": 10
}
'{
"items": {},
"pagination": {
"limit": 10,
"skip": 0,
"total": 100
}
}Search Query Parameters
"2023-04-18T11:56:49.865Z"
"2023-05-03T11:56:49.865Z"
x >= 00
x >= 110
OK
Show child attributes
Show child attributes
The unique identifier of the item
"20201211_223832_CS25"
The type of the item
"Feature"
The collection the item belongs to
"simple-collection_2"
The version of the STAC specification
"1.0.0"
The extensions used in the item
[
"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"
]The bounding box of the item
[
"172.91173669923782",
"1.3438851951615003",
"172.95469614953714",
"1.3690476620161975"
]Show child attributes
The altitude of the sensor in meters
700
The constellation name
"TD1"
The date and time the item was created
"2022-01-01T10:00:00Z"
"2022-06-15T12:00:00Z"
A description of the item
"Example description of the dataset"
The percentage of the image covered by clouds
23.5
The ground sample distance in meters
30
The instruments used
["VNIR"]The license of the item
"CC-BY-4.0"
The platform name
"TD1"
The EPSG code of the projection
"EPSG:4326"
The shape of the projection
[10980, 10980]the affine transform coefficients
[0, 10, 500000, 0, -10, 1000000]The percentage of anomalous pixels
0.01
The distance between the Earth and the Sun
1
The product level
"L2A"
The satellite ID
"SAT-123"
The type of radiometric data
"Reflectance"
The DOI of the scientific publication
"10.1234/sci_doi"
"2022-01-01T00:00:00Z"
The title of the item
"Example Title"
The date and time the item was last updated
"2022-06-01T10:00:00Z"
The angle between the sensor and the vertical
5
The latitude of the center of the scene
12.3456
The longitude of the center of the scene
-76.5432
The angle between the sun and the north
135
The angle between the sun and the horizon
45
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 itemShow child attributes
Show child attributes
Example
[
{
"fwhm": 0,
"name": "B013",
"common_name": "blue",
"solar_irradiance": 1965.25,
"center_wavelength": 493
}
]Show child attributes
The center wavelength of the band in micrometers
0.443
The common name of the band (e.g., "coastal", "blue", "green")
"coastal"
The full width at half maximum (FWHM) of the band in micrometers
0.027
The unique name of the band
"B01"
The solar irradiance at the top of the atmosphere for the band in W/m²/μm
1901
The HREF of the asset
"https://example.com/asset.tif"
Example
[
{
"scale": 0.00002,
"nodata": 0,
"offset": 0,
"spatial_resolution": 30
}
]Show child attributes
The nodata value of the band
-9999
The offset of the band
0
The scale of the band
1
The spatial resolution of the band in meters
10
The roles of the asset (e.g., "data", "metadata")
["data", "metadata"]A human-readable title for the asset
"Example Asset Title"
The MIME type of the asset
"image/tiff"
The links of the item
Show child attributes
The URL or reference the link points to
"https://example.com"
The relationship of the link (e.g., "self", "parent", "child")
"self"
A human-readable title for the link
"Example Link Title"
The MIME type of the linked resource (e.g., "application/json")
"application/json"
curl --request POST \
--url https://api.pixxel.space/v0/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"satellite": {
"collection_id": "sentinel-2-l2a",
"satellite_id": "0002a3a3-00a2-4b55-842b-44d8202c6d60"
},
"start_date": "2023-04-18T11:56:49.865Z",
"end_date": "2023-05-03T11:56:49.865Z",
"filters": [
{
"id": "eo:cloud_cover",
"min": 0,
"max": 100
}
],
"geometry": {
"coordinates": "<unknown>",
"type": "Polygon"
},
"skip": 0,
"limit": 10
}
'{
"items": {},
"pagination": {
"limit": 10,
"skip": 0,
"total": 100
}
}