Locating Downloadable Data (STAC API)
Using Accounts API
https://accounts.hydrosat.com/v2/me/access-policiesmeResponse = requests.request("GET",'https://accounts.hydrosat.com/v2/me/access-policies', headers=myheaders)
meContent = meResponse.json()
access_policy = meContent.get("access_policies", [])[0]
scene_entitlements = access_policy.get("scene_entitlements", [])
product_entitlements = access_policy.get("product_entitlements", [])Response Examples
[
{
"id":"d1ab374b-7623-416d-9dc9-b62df7866625",
"access_policy_id":"98ab1aa0-02a2-4a75-b5bf-19e95f5eb08e",
"product_name":"archive",
"configuration":{
"product_name":"archive",
"collections":[
"vz-liri-l1a",
"vz-viri-l1a",
"vz-l1b",
"vz-l2"
],
"restrict_search":false,
"restrict_items":true,
"restrict_properties":true
},
"areas_of_interest":[
{
"id":"448e8a88-0c56-4406-b9ba-a64b2c946584",
"product_entitlement_id":"d1ab374b-7623-416d-9dc9-b62df7866625",
"name":"Lake",
"geometry":{
"type":"Polygon",
"coordinates":[
[
[
-94.0733085212435,
31.98981826138629
],
[
-93.82521380712805,
31.113313105933432
],
[
-93.41658721917305,
31.01958485756203
],
[
-93.38010270239135,
31.275556307422413
],
[
-93.5260407695181,
31.704771952854895
],
[
-93.82521380712805,
31.97125515504588
],
[
-94.0733085212435,
31.98981826138629
]
]
]
},
"created":"2026-07-10T23:12:25.815575Z",
"updated":"2026-07-10T23:12:25.815575Z"
}
],
"created":"2026-07-10T23:12:25.587717Z",
"updated":"2026-07-10T23:12:25.587717Z"
}
]Last updated
Was this helpful?