Embeddings API
Creates an embedding vector representing the input text
POST
/
embeddings
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
input
default: required
Input text to embed, encoded as a string. To embed multiple inputs in a single request, pass an array of strings. The input must not exceed the max input tokens for the model (8192 tokens for nomic-ai/nomic-embed-text-v1.5
), cannot be an empty string, and any array must be 2048 dimensions or less.
model
required
dimensions
integer
The number of dimensions the resulting output embeddings should have. Only supported in nomic-ai/nomic-embed-text-v1.5
and later models.
Response
200 - application/json
data
object[]
requiredThe list of embeddings generated by the model.
model
string
requiredThe name of the model used to generate the embedding.
object
enum<string>
requiredThe object type, which is always "list".
Available options:
list
usage
object
requiredThe usage information for the request.
Was this page helpful?