Skip to main content
GET
/
api
/
v1
/
vector
/
vectors
/
{id}
Get a vector by ID
curl --request GET \
  --url http://localhost:8080/api/v1/vector/vectors/{id}
{
  "status": "success",
  "vector": {
    "id": "doc-1",
    "attributes": {
      "vector": [
        1,
        2,
        3
      ],
      "category": "electronics"
    }
  }
}

Path Parameters

id
string
required

The user-provided vector ID.

Maximum string length: 64

Response

The requested vector.

Response containing a single vector retrieved by ID.

status
string
required
Example:

"success"

vector
object
required

A record with an ID and attributes, including the embedding vector.