Back to data catalog
The HUB Ocean API provides standardized access to a vast catalog of ocean-related datasets, enabling users to explore, search, and retrieve geospatial and tabular data.
OpenAPI Spec
Explore the OpenAPI spec for HUB Ocean API
Documentation
Explore the documentation for HUB Ocean API
The HUB Ocean API offers programmatic access to a comprehensive catalog of ocean datasets, adhering to the SpatioTemporal Asset Catalog (STAC) standard. It facilitates the exploration, search, and retrieval of geospatial data through standardized RESTful endpoints.
GET /stac
: Access the root STAC catalog.GET /stac/collections
: List all available collections.POST /stac/search
: Search for items using filters like bounding box, datetime range, and collection IDs.curl -X GET "https://api.hubocean.earth/api/stac/collections"
curl -X POST "https://api.hubocean.earth/api/stac/search" \
-H "Content-Type: application/json" \
-d '{
"collections": ["example-collection"],
"bbox": [-180, -90, 180, 90],
"datetime": "2020-01-01T00:00:00Z/2020-12-31T23:59:59Z",
"limit": 10
}'
For more detailed information and additional functionalities, please refer to the HUB Ocean STAC API Documentation.