Data discovery

Discover geospatial datasets and select the data that suits your needs using the API.


List collections

  1. Get the list of available catalog image collections:
curl -s -L -X GET -H "Authorization: Bearer $PTOKEN" \
https://api.up42.com/collections | jq \
'.data[] | select(.type=="ARCHIVE") | .name'

List data products

  1. Get all the available catalog data products and store them in a separate file (to be used later in the ordering phase):
curl -s -L -X GET -H "Authorization: Bearer $PTOKEN" \
https://api.up42.com/data-products | jq -r \
'.data[] | select(.collectionName=="PHR") | .id' > archive_data_product_ids.json

List hosts

  1. Get all the available hosts (to be used later in the search phase):
curl -s -L -X GET -H "Authorization: Bearer $PTOKEN" \
https://api.up42.com/hosts | jq -r '.data[] | .name'

To proceed, go to Data search.