Zephiel API

Text Embeddings

Free tier

Vectors for search, clustering, and retrieval.

4.812 reviewsby Meridian AI26k subscribers
embeddingsvectorssemantic searchragsimilarity

Starts at

$20/mo

Choose a plan

Create a free account to subscribe.

Latency
210ms
Uptime
99.97%
Endpoints
3

About this API

Turn text into dense vectors suited to semantic search and retrieval-augmented generation. Multiple dimensions to trade accuracy against index size, batch endpoints for backfilling a corpus, and a matching similarity endpoint so you can prototype before choosing a vector database.

Common use cases

Semantic site search
Retrieval-augmented generation
Deduplicating support tickets
Recommendation systems

Quickstart

Every Zephiel API uses the same base URL, the same key header, and the same error envelope.

curl -X GET "https://zephiel.com/api/v1/text-embeddings/embed" \
  -H "X-Zephiel-Key: $ZEPHIEL_API_KEY" \
  -H "Accept: application/json"

Example response

{
  "model": "zephiel-embed-3",
  "dimensions": 768,
  "count": 2,
  "usage": { "tokens": 41 },
  "data": [{ "index": 0, "embedding": [0.0182, -0.0471, 0.0093, "..."] }]
}

Related APIs in AI & Machine Learning