> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter-d02e98a0-mintlify-5b6e02fd.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# CreateEmbeddingsResponseBody - Go SDK

> CreateEmbeddingsResponseBody type definition

<Warning>
  The Go SDK and docs are currently in beta.
  Report issues on [GitHub](https://github.com/OpenRouterTeam/go-sdk/issues).
</Warning>

Embeddings response containing embedding vectors

## Fields

| Field    | Type                                                                                                 | Required             | Description                                   | Example                                                                                                  |
| -------- | ---------------------------------------------------------------------------------------------------- | -------------------- | --------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
| `Data`   | \[][operations.CreateEmbeddingsData](/client-sdks/go/api-reference/operations/createembeddingsdata)  | :heavy\_check\_mark: | List of embedding objects                     | \[<br />`{"embedding": [0.0023064255,-0.009327292,0.015797347],"index": 0,"object": "embedding"}`<br />] |
| `ID`     | `*string`                                                                                            | :heavy\_minus\_sign: | Unique identifier for the embeddings response | embd-1234567890                                                                                          |
| `Model`  | `string`                                                                                             | :heavy\_check\_mark: | The model used for embeddings                 | openai/text-embedding-3-small                                                                            |
| `Object` | [operations.Object](/client-sdks/go/api-reference/operations/object)                                 | :heavy\_check\_mark: | N/A                                           |                                                                                                          |
| `Usage`  | [\*operations.CreateEmbeddingsUsage](/client-sdks/go/api-reference/operations/createembeddingsusage) | :heavy\_minus\_sign: | Token usage statistics                        | `{"prompt_tokens": 8,"total_tokens": 8}`                                                                 |
