v1

latestOpenAPI 3.0.32026-07-26451985.7 KB

feature-extraction

Convert text into vectors (embeddings) that capture semantic meaning

post/models/v2/nomic-ai/nomic-embed-text-v1.5

Request body

textstring required

The input text

Example request

{
  "text": "search_document: Turn this text into a vector"
}

Response

Successful feature-extraction response.

errorstring nullable required

Null on success; otherwise an error message.

Example response

{
  "output": [
    0.1,
    0.2,
    0.3,
    0.4
  ]
}