Skip to main content
GET
/
v5
/
vector-stores
/
{vector_store_name}
/
vectors
/
{vector_id}
Get Vector
curl --request GET \
  --url https://api.egp.scale.com/v5/vector-stores/{vector_store_name}/vectors/{vector_id} \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "content": {
    "text": "<string>",
    "type": "text"
  },
  "metadata": {},
  "vector": [
    123
  ]
}

Authorizations

x-api-key
string
header
required

Headers

x-selected-account-id
string | null

Path Parameters

vector_store_name
string
required

The name of the vector store

vector_id
string
required

The ID of the vector to retrieve

Query Parameters

include_vectors
boolean
default:false

Include embedding vectors

Response

Successful Response

A document returned from direct lookups (get/list operations).

id
string
required

Document ID

content
Content · object
required

Document content

metadata
Metadata · object

Key-value metadata

vector
number[]

Embedding vector (if requested)