Getting Started

Cosinia is a zero-retention vector processing and export service.

Start in 2 minutes: create an API key → POST your vectors → read the result → export.

1) Get an API key

Create one in the Dashboard → API Keys.

2) First request (cURL)

curl -sS -X POST "$API/v1/vector-quality" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $API_KEY" \
  -d '{"embeddings":[[0.1,0.2,0.3]]}'

await fetch(`${API}/v1/vector-quality`, {
  method: "POST",
  headers: { "Content-Type": "application/json", "X-API-Key": process.env.COSINIA_API_KEY! },
  body: JSON.stringify({ embeddings: [[0.1,0.2,0.3]] }),
});