Gemini Embedding 001 via the Tokenator API

What the model is for

gemini-embedding-001 provides a unified cutting edge experience across domains, including science, legal, finance, and coding. This embedding model has consistently held a top spot on the Massive Text Embedding Benchmark (MTEB) Multilingual leaderboard since the experimental launch in March.

Specification

Full nameGemini Embedding 001
API IDgemini-embedding-001
Model vendorOpenAI
TypeEmbeddings (vector representations)
Context window20K tokens
Tokenator usage multiplier1.35×
Input modalitiestext
Supported API formats/v1/embeddings
Upstream providers1
Current statusavailable
Data updated2026-09-15

Upstream providers

ProviderMultiplier
Unified LLM API1.35×

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": "gemini-embedding-001",
    "input": "Hello"
  }'

FAQ about Gemini Embedding 001

What is the API ID of Gemini Embedding 001?

gemini-embedding-001 — put this into the model field of your request.

What context window does Gemini Embedding 001 have?

20K tokens.

How many tokens will a request cost?

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