Embeddings
post/embeddings
Body params
- Name
model
- Type
- string
- Required
- Description
- ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them.
- Name
input
- Required
- Description
- Input text to get embeddings for, encoded as a string or array of tokens. To get embeddings for multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed 8192 tokens in length.
- Name
user
- Type
- string
- Description
- A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids).
Response
JSON
{
"object": "string",
"model": "string",
"data": [
{
"index": 0,
"object": "string",
"embedding": [
0
]
}
],
"usage": {
"prompt_tokens": 0,
"total_tokens": 0
}
}