---
title: "Search STAC items with simple filtering."
method: GET
path: "/search"
tags: ["Item Search"]
---

# Search STAC items with simple filtering.

`GET /search`

Retrieve Items matching filters. Intended as a shorthand API for simple
queries.
This method is required to implement.
If this endpoint is implemented on a server, it is required to add a
link referring to this endpoint with `rel` set to `search` to the
`links` array in `GET /`. As `GET` is the default method, the `method`
may not be set explicitly in the link.

## Query parameters

- `bbox` number[]
- `intersects` union
  - PointGeoJSON
    - `type` 'Point', required
    - `coordinates` number[], required
  - MultipointGeoJSON
    - `type` 'MultiPoint', required
    - `coordinates` array[], required
      - number[]
  - LinestringGeoJSON
    - `type` 'LineString', required
    - `coordinates` array[], required
      - number[]
  - MultilinestringGeoJSON
    - `type` 'MultiLineString', required
    - `coordinates` array[], required
      - array[]
        - number[]
  - PolygonGeoJSON
    - `type` 'Polygon', required
    - `coordinates` array[], required
      - array[]
        - number[]
  - MultipolygonGeoJSON
    - `type` 'MultiPolygon', required
    - `coordinates` array[], required
      - array[]
        - array[]
          - number[]
  - GeometrycollectionGeoJSON
    - `type` 'GeometryCollection', required
    - `geometries` GeometryGeoJSON[], required
- `datetime` string
- `limit` integer
- `ids` string[] — Array of Item ids to return.
- `collections` string[] — Array of Collection IDs to include in the search for items. Only Item objects in one of the provided collections will be searched.

## Response `200`

A feature collection.

## Other responses

- `default` — An error occured.

## Changes

- **2022-07-13** `d3fedf27dd62` — 1 info
  - endpoint added
- **2022-05-24** `eff91745dc5a` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/camptocamp/apis/openapi-for-oapi-poc-meteoswiss/changes/search/get.md)

---

[API](https://skmtc.dev/camptocamp/apis/openapi-for-oapi-poc-meteoswiss.md) · [All operations](https://skmtc.dev/camptocamp/apis/openapi-for-oapi-poc-meteoswiss/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/camptocamp/openapi-for-oapi-poc-meteoswiss/revisions/0ceee3870e41/schema)
