I have an account created and can successfully get a bearer token, but have been unable to get anything but a 400 (Bad Request) returned from queries.
I’m following: Catalog API
I’m using python requests and placing my token in the header
headers = {"Authorization": f"Bearer {token}", 'Accept':'application/geo+json'}
sentinel_stac_url = 'https://services.sentinel-hub.com/api/v1/catalog/1.0.0/search'
post_data = {"limit": 50,
"datetime": "2023-01-01T00:00:00Z/2023-01-07T00:00:00Z",
"collections": ["sentinel-1-grd"]
}
query_response = requests.post(url=sentinel_stac_url, headers=headers, json=post_data, verify=False)
