In this guide, we’ll walk you through creating an archive order using our API. We’ll break down the JSON request into steps and explain each parameter required for ordering archived imagery. We’ll also show you how to fetch item IDs from your archive search results and use them in your order.
Archive ordering lets you purchase imagery from our archives. Unlike tasking orders where you request new captures, archive orders let you select existing imagery by referencing specific STAC Item IDs. This guide explains the key parameters for an archive order and shows you how to structure your JSON request.
Tip:
First, use the Archive Search endpoints to explore and identify the STAC Items you need. Note their item IDs – these are required when creating an archive order.
dry_run
Set this flag to true
to simulate an order without actually processing it. Use false
for a live order.
Snippet:
Your archive order is defined within the order_items
array. Each order item represents a separate archive order request. To know more about Order Items, read this page.
Snippet:
For archive orders, you need to include an AOI to specify the spatial context of your order. This is required to create an archive order.
geometry
Snippet:
Lists the unique identifiers of the STAC Items you wish to order. These IDs are retrieved from the Archive Search results.
item_ids
"TD1_005630_20230314_L2A_20230504_03001069"
).Snippet:
A descriptive name to help you track the order.
name
Snippet:
Links the order to a specific project.
project_id
project_id
which you can get from List Projects APINote:
Ensure your service account is added to the project via the UI.
Snippet:
If you want the imagery to be automatically delivered to a designated store, you can include cloud configuration details.
cloud_delivery
Specifies the store configuration for automatic delivery.config
) and optionally the delivery path (path
).Snippet:
Specifies the intended use for the imagery.
usecase
"agriculture"
).Snippet:
Below is the complete JSON request for an archive order. This request uses the item IDs you fetched from your Archive Search (see the Archive Search Guide above).
This guide should help you understand the parameters needed for ordering archives and how to construct your JSON request step by step. For additional details or troubleshooting, please refer to our Archives Documentation.