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.
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.
Best for most teams.
Add credit, pay per request. No monthly commitment. Clear usage visibility.
Volume discounts available as usage grows.
Predictable budgeting.
Flat monthly plan with included requests. Overage billed at pay-go rate.
Priority routing available on higher tiers.
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