All data sources

Copernicus / Sentinel

API keycopernicus

Copernicus / Sentinel satellite data — search and download Sentinel-2 optical, Sentinel-5P methane (CH4), and other ESA Earth observation products from the Copernicus Data Space.

Provenance

PublisherCopernicus / Sentinel

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationCredentials required (API key)

Methods (5)

  • searchProducts

    read

    Search Copernicus Sentinel products (OData) by filters.

    Input schema
    {
      "type": "object",
      "properties": {
        "collection": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "SENTINEL-1"
              ]
            },
            {
              "type": "string",
              "enum": [
                "SENTINEL-2"
              ]
            },
            {
              "type": "string",
              "enum": [
                "SENTINEL-3"
              ]
            },
            {
              "type": "string",
              "enum": [
                "SENTINEL-5P"
              ]
            },
            {
              "type": "string",
              "enum": [
                "SENTINEL-6"
              ]
            }
          ]
        },
        "productType": {
          "type": "string"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "startDate": {
          "type": "string"
        },
        "endDate": {
          "type": "string"
        },
        "cloudCoverMax": {
          "type": "number"
        },
        "limit": {
          "type": "number"
        },
        "offset": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  • getProduct

    read

    Get Copernicus product metadata by id.

    Input schema
    {
      "type": "object",
      "properties": {
        "productId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "productId"
      ]
    }
  • searchSentinel5pCH4

    read

    Search Sentinel-5P methane (CH4) products.

    Input schema
    {
      "type": "object",
      "properties": {
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "startDate": {
          "type": "string"
        },
        "endDate": {
          "type": "string"
        },
        "productType": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "L2__CH4____"
              ]
            },
            {
              "type": "string",
              "enum": [
                "L2__CO_____"
              ]
            },
            {
              "type": "string",
              "enum": [
                "L2__NO2____"
              ]
            }
          ]
        },
        "limit": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  • searchSentinel2

    read

    Search Sentinel-2 optical imagery products.

    Input schema
    {
      "type": "object",
      "properties": {
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "startDate": {
          "type": "string"
        },
        "endDate": {
          "type": "string"
        },
        "cloudCoverMax": {
          "type": "number"
        },
        "productType": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "S2MSI1C"
              ]
            },
            {
              "type": "string",
              "enum": [
                "S2MSI2A"
              ]
            }
          ]
        },
        "limit": {
          "type": "number"
        }
      },
      "additionalProperties": false
    }
  • downloadProduct

    read

    Download a Copernicus product by id (base64).

    Input schema
    {
      "type": "object",
      "properties": {
        "productId": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "productId"
      ]
    }