Production-ready vector embeddings with enterprise controls.
Bearer auth with hashed API keys, scoped usage, and per-key rate limits.
Maavee embeddings are much lower cost compared to LLM providers.
Use the embeddings endpoint in production.
curl -X POST https://api.synapse.maavee.ai/api/embed \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-d '{"payload": "The quick brown fox jumps over the lazy dog."}'
Returns a base64-encoded float32 vector and dimensions.
Authorization: Bearer <API_KEY>Content-Type: application/jsonX-RateLimit-Limit, X-RateLimit-Remaining
{
"endpoint": "embed",
"payload": {
"object": "embedding",
"embedding": "",
"dimensions": 1536
},
"usage": {
"limit": 1000,
"used": 1,
"remaining": 999
}
}
REST API Or Maavee Synapse SDK in Node or Pyhton.
Get secure, metered embeddings with enterprise controls.
Request Access