Skip to main content
Points are the core data structure in Qdrant, consisting of a vector, optional payload, and unique ID. Use these endpoints to insert, retrieve, update, and delete points.

Upsert Points

Insert or update points in a collection. If a point with the given ID already exists, it will be overwritten.
Path Parameters
string
required
Name of the collection to update
Query Parameters
boolean
If true, wait for changes to actually happen. Default is true.
string
Define ordering guarantees: weak, medium, or strong
integer
Timeout for the operation in seconds
Request Body
array
required
List of points to upsert
integer | string
required
Unique identifier for the point. Can be an integer or UUID string.
array | object
required
Vector data. Can be a single vector array, multi-vector array, or named vectors object.
object
Optional payload data associated with the point
Response
object
integer
Operation identifier
string
Update status: acknowledged or completed

Get Point

Retrieve full information about a single point by its ID.
Path Parameters
string
required
Name of the collection to retrieve from
integer | string
required
ID of the point to retrieve
Query Parameters
string
Read consistency level: majority, quorum, or all
Response
object
integer | string
Point ID
array | object
Vector data
object
Payload data

Get Multiple Points

Retrieve multiple points by their IDs.
Path Parameters
string
required
Name of the collection to retrieve from
Query Parameters
string
Read consistency level
integer
Request timeout in seconds
Request Body
array
required
Array of point IDs to retrieve
boolean | array | object
Whether to return payload. Can be true, false, array of field names, or include/exclude object.
boolean | array
Whether to return vectors. Can be true, false, or array of vector names.
Response
array
Array of point objects with id, vector, and payload

Delete Points

Delete points from a collection by ID or filter.
Or delete by filter:
Path Parameters
string
required
Name of the collection to delete from
Query Parameters
boolean
If true, wait for changes to actually happen
string
Define ordering guarantees for the operation
integer
Timeout for the operation in seconds
Request Body
array
Array of point IDs to delete
object
Filter conditions to select points for deletion
array
All conditions must match
array
At least one condition must match
array
All conditions must NOT match
Response
object
integer
Operation identifier
string
Update status

Scroll Points

Paginate through all points matching given filtering conditions.
Path Parameters
string
required
Name of the collection to retrieve from
Query Parameters
string
Read consistency level
integer
Request timeout in seconds
Request Body
integer | string
Start from this point ID. Omit to start from the beginning.
integer
Maximum number of points to return. Default is 10.
object
Filter conditions to select points
boolean | array | object
Whether to return payload
boolean | array
Whether to return vectors
string
Payload field to order results by
Response
object
array
Array of point objects
integer | string
Offset for the next page, or null if this is the last page

Set Payload

Set or update payload values for specific points.
Path Parameters
string
required
Name of the collection
Query Parameters
boolean
If true, wait for changes to actually happen
string
Define ordering guarantees for the operation
integer
Timeout for the operation in seconds
Request Body
object
required
Payload values to set
array
Array of point IDs to update
object
Filter to select points for update
Response
object
integer
Operation identifier
string
Update status

Overwrite Payload

Replace the entire payload of points with a new one.
Parameters are identical to Set Payload, but this operation replaces the entire payload rather than merging.

Delete Payload

Delete specific payload keys from points.
Path Parameters
string
required
Name of the collection
Query Parameters
boolean
If true, wait for changes to actually happen
string
Define ordering guarantees for the operation
integer
Timeout for the operation in seconds
Request Body
array
required
Array of payload keys to delete
array
Array of point IDs to update
object
Filter to select points for update
Response
object
integer
Operation identifier
string
Update status

Clear Payload

Remove all payload from specified points.
Path Parameters
string
required
Name of the collection
Query Parameters
boolean
If true, wait for changes to actually happen
string
Define ordering guarantees for the operation
integer
Timeout for the operation in seconds
Request Body
array
Array of point IDs to clear
object
Filter to select points for clearing
Response
object
integer
Operation identifier
string
Update status

Update Vectors

Update specific named vectors on points while keeping other vectors intact.
Path Parameters
string
required
Name of the collection
Query Parameters
boolean
If true, wait for changes to actually happen
string
Define ordering guarantees for the operation
integer
Timeout for the operation in seconds
Request Body
array
required
Array of points with vectors to update
integer | string
required
Point ID
object
required
Named vectors to update
Response
object
integer
Operation identifier
string
Update status

Delete Vectors

Delete specific named vectors from points.
Path Parameters
string
required
Name of the collection
Query Parameters
boolean
If true, wait for changes to actually happen
string
Define ordering guarantees for the operation
integer
Timeout for the operation in seconds
Request Body
array
required
Array of vector names to delete
array
Array of point IDs
object
Filter to select points
Response
object
integer
Operation identifier
string
Update status

Batch Update

Apply multiple update operations for points, vectors, and payloads in a single request.
Path Parameters
string
required
Name of the collection
Query Parameters
boolean
If true, wait for changes to actually happen
string
Define ordering guarantees for the operation
integer
Timeout for the operation in seconds
Request Body
array
required
Array of operations to execute. Each operation can be: upsert, delete, set_payload, overwrite_payload, delete_payload, clear_payload, update_vectors, or delete_vectors.
Response
array
Array of update results for each operation