Text Embedding 3 Small via the Tokenator API

What the model is for

text-embedding-3-small is OpenAI's improved, more performant version of the ada embedding model. Embeddings are a numerical representation of text that can be used to measure the relatedness between two pieces of text. Embeddings are useful for search, clustering, recommendations, anomaly detection, and classification tasks.

Specification

Full nameText Embedding 3 Small
API IDtext-embedding-3-small
Model vendorOpenAI
TypeEmbeddings (vector representations)
Context window8.2K tokens
Tokenator usage multiplier
Input modalitiestext
Supported API formats/v1/embeddings
Upstream providers1
Current statusavailable
Data updated2026-09-15

Upstream providers

ProviderMultiplier
Unified LLM API

A request goes to the first available provider by priority; if it fails, Tokenator switches to the next one.

Example request

curl
curl https://api.tokenator.top/v1/embeddings \
  -H "Authorization: Bearer sk-your-tokenator-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "text-embedding-3-small",
    "input": "Hello"
  }'

FAQ about Text Embedding 3 Small

What is the API ID of Text Embedding 3 Small?

text-embedding-3-small — put this into the model field of your request.

What context window does Text Embedding 3 Small have?

8.2K tokens.

How many tokens will a request cost?

input × 1× — embeddings have no output, so you pay for the input text only. See the documentation for details.

How do I call this model?

Through /v1/embeddings only: the chat endpoints refuse such a model. Parameters and examples are in the embeddings documentation.