curl "https://landsatlook.usgs.gov/stac-server/search?collections=landsat-c2l2-sr&bbox=-75,-20,-50,5&limit=10" \
-H "Accept: application/geo+json"
from pystac_client import Client # pip install pystac-client
catalog = Client.open("https://landsatlook.usgs.gov/stac-server")
search = catalog.search(collections=["landsat-c2l2-sr"],
bbox=[-75, -20, -50, 5], max_items=10)
for item in search.items():
print(item.id, list(item.assets))
const res = await fetch("https://landsatlook.usgs.gov/stac-server/search?collections=landsat-c2l2-sr&bbox=-75,-20,-50,5&limit=10");
const { features } = await res.json();
features.forEach(f => console.log(f.id, Object.keys(f.assets)));