---
title: "Get point"
method: GET
path: "/collections/{collection_name}/points/{id}"
tags: ["points"]
---

# Get point

`GET /collections/{collection_name}/points/{id}`

Retrieve full information of single point by id

## Path parameters

- `collection_name` string, required
- `id` union, required — Type, used for specifying point ID in user interface
  - integer
  - string, uuid

## Query parameters

- `consistency` union — Read consistency parameter Defines how many replicas should be queried to get the result * `N` - send N random request and return points, which present on all of them * `majority` - send N/2+1 random request and return points, which present on all of them * `quorum` - send requests to all nodes and return points which present on majority of them * `all` - send requests to all nodes and return points which present on all of them Default value is `Factor(1)`
  - integer
  - 'majority' | 'quorum' | 'all' — * `majority` - send N/2+1 random request and return points, which present on all of them * `quorum` - send requests to all nodes and return points which present on majority of nodes * `all` - send requests to all nodes and return points which present on all nodes

## Response `200`

successful operation

- object
  - `time` number, float — Time spent to process this request
  - `status` string
  - `result` Record — Point data
    - `id` union, required — Type, used for specifying point ID in user interface
      - integer
      - string, uuid
    - `payload` union — Payload - values assigned to the point
      - Payload
      - unknown
    - `vector` union — Vector of the point
      - union — Full vector data per point separator with single and multiple vector modes
        - number[]
        - array[]
          - number[]
        - object
        - Document — WARN: Work-in-progress, unimplemented Text document for embedding. Requires inference infrastructure, unimplemented.
          - `text` string, required — Text of the document This field will be used as input for the embedding model
          - `model` string, nullable — Name of the model used to generate the vector List of available models depends on a provider
      - unknown
    - `shard_key` union — Shard Key
      - union
        - string
        - integer
      - unknown
    - `order_value` union
      - union
        - integer
        - number, double
      - unknown

## Other responses

- `default` — error
- `4XX` — error

## Changes

- **2024-09-09** `99f8ca65a207` — 2 info
  - added `#/components/schemas/Document` to the `result/vector/anyOf[#/components/schemas/VectorStruct]/` response property `anyOf` list for the response status `200`
  - added `#/components/schemas/Document` to the `result/vector/anyOf[#/components/schemas/VectorStruct]/anyOf[subschema #3]/additionalProperties/` response property `anyOf` list for the response status `200`
- **2024-08-13** `d530ad1be7de` — 8 info
  - added `subschema #1, subschema #2` to the `result/id` response property `anyOf` list for the response status `200`
  - added `subschema #1, subschema #2` to the `result/order_value/anyOf[#/components/schemas/OrderValue]/` response property `anyOf` list for the response status `200`
  - added `subschema #1, subschema #2` to the `result/shard_key/anyOf[#/components/schemas/ShardKey]/` response property `anyOf` list for the response status `200`
  - added `subschema #1, subschema #2, subschema #3` to the `result/vector/anyOf[#/components/schemas/VectorStruct]/` response property `anyOf` list for the response status `200`
  - …4 more
- **2024-07-01** `e1a916176c14` — 2 info
  - added the optional property `result/order_value` to the response with the `200` status
  - added `subschema #2` to the `result/vector/anyOf[#/components/schemas/VectorStruct]/` response property `anyOf` list for the response status `200`

[Change history](https://skmtc.dev/qdrant/apis/qdrant-api/changes/collections/:collection_name/points/:id/get.md)

---

[API](https://skmtc.dev/qdrant/apis/qdrant-api.md) · [All operations](https://skmtc.dev/qdrant/apis/qdrant-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/qdrant/qdrant-api/revisions/99f8ca65a207/schema)
