---
title: "Fetch a single feature"
method: GET
path: "/collections/{collectionId}/items/{featureId}"
tags: ["Data"]
---

# Fetch a single feature

`GET /collections/{collectionId}/items/{featureId}`

Fetch the feature with id `featureId` in the feature collection with id `collectionId`.

Use content negotiation to request HTML or GeoJSON.

## Path parameters

- `collectionId` string, required
- `featureId` string, required

## Headers

- `If-Match` string
- `If-None-Match` string

## Response `200`

Fetch the feature with id `featureId` in the feature collection with id `collectionId`

- Item — A GeoJSON Feature augmented with foreign members that contain values relevant to a STAC entity
  - `id` string, required — Feature identifier (unique per collection)
  - `links` Link[], required
    - `href` string, url, required
    - `rel` string, required — Relationship between the current document and the linked document. NOTE: the following relations are reserved and automatically generated: `self`, `root`, `parent`, `items`, `collection`, `next`, `previous`
    - `title` string
    - `type` string — The media type of the link target
    - `method` 'GET' | 'POST' — Specifies the HTTP method that the link expects
  - `assets` ItemAssets, required — List of Assets attached to this feature.
  - `bbox` number[], required — The bounding box is provided as four numbers: * Lower left corner, coordinate axis 1 * Lower left corner, coordinate axis 2 * Upper right corner, coordinate axis 1 * Upper right corner, coordinate axis 2 The coordinate reference system of the values is WGS84 longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84). For WGS84 longitude/latitude the values are in most cases the sequence of minimum longitude, minimum latitude, maximum longitude and maximum latitude. However, in cases where the box spans the antimeridian the first value (west-most box edge) is larger than the third value (east-most box edge). Example: The bounding box of Switzerland in WGS 84 (from 5.96°E to 10.49°E and from 45.82°N to 47.81°N) would be represented in JSON as `[5.96, 45.82, 10.49, 47.81]` and in a query as `bbox=5.96,45.82,10.49,47.81`."
  - `geometry` ItemGeometry, required
    - `type` 'Polygon', required
    - `coordinates` array[], required — For type "Polygon", the "coordinates" member MUST be an array of linear ring coordinate arrays. The coordinate reference system of the values is WGS84 longitude/latitude (http://www.opengis.net/def/crs/OGC/1.3/CRS84).
      - array[]
        - number[]
  - `properties` ItemProperties, required — Provides the core metadata fields plus extensions The item's data timing information can be specified either with * One datetime value in the field `datetime` * A datetime range with a `start_datetime` and an `end_datetime` One of the two is required
    - `created` string, date-time, required — RFC 3339 compliant datetime string, time when the object was created
    - `datetime` string, date-time — RFC 3339 compliant datetime string
    - `start_datetime` string, date-time — RFC 3339 compliant datetime string
    - `end_datetime` string, date-time — RFC 3339 compliant datetime string
    - `updated` string, date-time, required — RFC 3339 compliant datetime string, time when the object was updated
    - `title` string, nullable — Human readable title of the Feature
  - `stac_version` string, required
  - `type` 'Feature', required — The GeoJSON type

## Other responses

- `304` — The cached resource was not modified since last request.
- `404` — The specified resource/URI was not found
- `412` — Some condition specified by the request could not be met in the server
- `500` — The request was syntactically and semantically valid, but an error occurred while trying to act upon it

---

[API](https://skmtc.net/geoadmin/apis/the-spatiotemporal-asset-catalog-api-for-data-geo-admin-ch-3.md) · [All operations](https://skmtc.net/geoadmin/apis/the-spatiotemporal-asset-catalog-api-for-data-geo-admin-ch-3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/geoadmin/the-spatiotemporal-asset-catalog-api-for-data-geo-admin-ch-3/revisions/5598f1965b60/schema)
