Skip to main content
POST
/
v1
/
embeddings
/
free
Get Embedding (Free - No Billing)
curl --request POST \
  --url https://api.example.com/v1/embeddings/free \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input": "세종대왕에 대해 설명해줘"
}
'
{
  "code": 1,
  "success": true,
  "data": "<unknown>",
  "exception": "<unknown>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Include the token in the Authorization header as 'Bearer '

Body

application/json

Embedding request. It includes input.

Embedding Module

Contains all the embedding and text generation related request and response models.

input
string
required

Query to get embedding

model
string | null

Optional model name (will be overridden by Redis model value for managed endpoints)

tenant_uuid
string | null

Optional tenant UUID for billing tracking

Response

Successfully retrieved embedding

code
integer<int32>
required

HTTP status code.

Required range: x >= 0
success
boolean
required

Whether the request was successful.

data
any
exception
any