Examples of Third Party Data Import

We prepared examples of whole workflows which include searching for, ordering, listing of orders and accessing the third party data using Sentinel Hub. While workflows are very similar for all third party data, we prepared separate examples to avoid any confusion.

The requests are given in Python. To execute them you need to create an OAuth client as is explained here. It is named oauth in these examples.

A Postman collection with examples can be downloaded here. Our Postman collections are deprecated and are not being updated since July 2022.

Get your quota

The request for checking your quota is the same for all third party data.

url = "https://services.sentinel-hub.com/api/v1/dataimport/quotas"
response = oauth.get(url=url)
response.raise_for_status()
response.json()

Examples of third party data import workflows