v3

latestOpenAPI 3.0.3raw.githubusercontent.com2026-04-279152.1 KB
Points

Get single point

Retrieve full information for a single point by its ID, including its vector and payload.

get/collections/{collection_name}/points/{id}

Path parameters

collection_namestring required

The name of the collection containing the point.

integer required
OR
string required

The unique identifier of the point to retrieve. Accepts an integer or a UUID string.

Response

Point retrieved

timenumber double

Time spent to process this request, in seconds.

statusstring

Operation status. Returns ok on success.

Example response

{
  "time": 0.000161149,
  "status": "ok",
  "result": {
    "payload": {
      "category": "electronics",
      "price": 299.99
    },
    "vector": [
      0.1,
      0.2,
      0.3,
      0.4
    ]
  }
}