Get (V2)
This operation gets specific entities by their IDs.
The base URL for this API is in the following format:
https://${CLUSTER_ENDPOINT}
- You need to fill in
${CLUSTER_ENDPOINT}with that of your Zilliz Cloud cluster. - To get the endpoint, use the Describe Cluster V2 API to extract the values from the responses.
export CLUSTER_ENDPOINT=""
The authentication token should be an API key with appropriate privileges or a pair of colon-joined username and password, like username:password.
The name of the database.
The name of the collection to which this operation applies.
A specific entity ID or a list of entity IDs.
An array of fields to return along with the query results.
An output field name.
The name of the partitions to which this operation applies.
A partition name.
The consistency level for this operation. The default value is Bounded.
Name of the partition to get entities from.
export TOKEN="db_admin:xxxxxxxxxxxxx"
curl --request POST \
--url "${CLUSTER_ENDPOINT}/v2/vectordb/entities/get" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Content-Type: application/json" \
-d '{
"collectionName": "quick_setup",
"id": [
1,
3,
5
],
"outputFields": [
"color"
]
}'
Response code.
Cost of this operation. This applies to free and serverless clusters only, indicating the vCU usage of the current request.
Query results.
An entity object.
Returns an error message.
Response code.
Error message.
{
"code": 0,
"data": [
{
"color": "red_7025",
"id": 1
},
{
"color": "pink_9298",
"id": 3
},
{
"color": "yellow_4222",
"id": 5
}
]
}