> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# CreateEmbeddingsResponseBody

Embeddings response containing embedding vectors

## Fields

| Field    | Type                                                                                    | Required             | Description                                   | Example                                                                                                                                                  |
| -------- | --------------------------------------------------------------------------------------- | -------------------- | --------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `data`   | List\[[operations.CreateEmbeddingsData](../operations/createembeddingsdata.mdx)]        | :heavy\_check\_mark: | List of embedding objects                     | \[<br />\{<br />"embedding": \[<br />0.0023064255,<br />-0.009327292,<br />0.015797347<br />],<br />"index": 0,<br />"object": "embedding"<br />}<br />] |
| `id`     | *Optional\[str]*                                                                        | :heavy\_minus\_sign: | Unique identifier for the embeddings response | embd-1234567890                                                                                                                                          |
| `model`  | *str*                                                                                   | :heavy\_check\_mark: | The model used for embeddings                 | openai/text-embedding-3-small                                                                                                                            |
| `object` | [operations.Object](../operations/object.mdx)                                           | :heavy\_check\_mark: | N/A                                           |                                                                                                                                                          |
| `usage`  | [Optional\[operations.CreateEmbeddingsUsage\]](../operations/createembeddingsusage.mdx) | :heavy\_minus\_sign: | Token usage statistics                        | \{<br />"prompt\_tokens": 8,<br />"total\_tokens": 8<br />}                                                                                              |
