Text Embedding 3 Large via the Tokenator API

What the model is for

text-embedding-3-large is OpenAI's most capable embedding model for both english and non-english tasks. 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 Large
API IDtext-embedding-3-large
Model vendorOpenAI
TypeEmbeddings (vector representations)
Context window8.2K tokens
Tokenator usage multiplier1.2×
Input modalitiestext
Supported API formats/v1/embeddings
Upstream providers1
Current statusavailable
Data updated2026-09-15

Upstream providers

ProviderMultiplier
Unified LLM API1.2×

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-large",
    "input": "Hello"
  }'

FAQ about Text Embedding 3 Large

What is the API ID of Text Embedding 3 Large?

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

What context window does Text Embedding 3 Large have?

8.2K tokens.

How many tokens will a request cost?

input × 1.2× — 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.