Skip to main content
POST
/
api
/
v1
/
embeddings
/
{indexName}
/
retrieve
{
  "status": 200,
  "message": "2/2 embeddings successfully retrieved.",
  "data": {
    "embeddings": [
      {
        "data": [
          0.1,
          -0.2,
          0.45
        ],
        "id": 23,
        "metadata": {
          "foo": "bar"
        }
      },
      {
        "data": [
          0.2,
          -0.7,
          0.32
        ],
        "id": 67,
        "metadata": {}
      }
    ]
  }
}

Authorizations

X-Eigen-API-Key
string
header
required

Path Parameters

indexName
string
required

Name of the index

Body

application/json
ids
number[]
required

IDs of embedding to retrieve

Response

Embeddings successfully retrieved.

status
integer
required

Status code of the response

message
string
required

Message giving basic information on the response

data
object

Important data to be given to the caller

error
object

An error that has occured

I