openai logo

OpenAI: Text Embedding 3 Small

openai/text-embedding-3-small
Created Nov 14, 2025|8,192 context|$0.02/M input tokens|$0.00/M output tokens
Intel TDX

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.

Providers for OpenAI: Text Embedding 3 Small

RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

openai logo
openai
Total Context
8,192

API

RedPill provides an OpenAI-compatible embeddings API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.

fetch("https://api.redpill.ai/v1/embeddings", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "openai/text-embedding-3-small",
    "input": "Your text string goes here",
  })
})