diff --git a/stac_fastapi/types/stac_fastapi/types/core.py b/stac_fastapi/types/stac_fastapi/types/core.py index 5c9fba2c4..fcf040457 100644 --- a/stac_fastapi/types/stac_fastapi/types/core.py +++ b/stac_fastapi/types/stac_fastapi/types/core.py @@ -278,6 +278,14 @@ def _landing_page( "type": MimeTypes.geojson, "title": "STAC search", "href": urljoin(base_url, "search"), + "method": "GET", + }, + { + "rel": Relations.search.value, + "type": MimeTypes.json, + "title": "STAC search", + "href": urljoin(base_url, "search"), + "method": "POST", }, ], stac_extensions=extension_schemas,