Embeddings API
RAG / AI Search
Low-cost + predictable

KushCompute

Low-cost embeddings API for RAG and AI search. Convert text and documents into high-quality vectors without enterprise embedding bills.

Built for developers who want a simple API, predictable pricing, and an option for privacy-sensitive workloads.

Beta: best-effort reliability while we scale. If we fail a request, you don’t get billed.

Best fit

  • RAG apps & “chat with my docs” products
  • Batch ingestion (PDFs, scraped pages, datasets)
  • Cost-sensitive embedding workloads
  • Privacy-sensitive documents (optional private routing)

What you get

  • Embeddings endpoint + batch option
  • API key auth + rate limits
  • Usage tracking for billing
  • Failover across nodes

Free Trial

Free for evaluation.

Includes a limited number of requests over a short window. No credit card required.

Trial keys are development-only and rate-limited to prevent abuse.

Pay-as-you-go

Best for most teams.

Add credit, pay per request. No monthly commitment. Clear usage visibility.

Volume discounts available as usage grows.

Subscription

Predictable budgeting.

Flat monthly plan with included requests. Overage billed at pay-go rate.

Priority routing available on higher tiers.

Quickstart

Send text → get vectors. Use your API key in the X-API-Key header.

# PowerShell example
$headers = @{ "X-API-Key" = "YOUR_KEY"; "Content-Type" = "application/json" }
$body = @{ text = "hello from kushcompute" } | ConvertTo-Json
Invoke-RestMethod -Method Post -Uri "https://api.kushcompute.com/embed" -Headers $headers -Body $body