Authentication
Neumera uses API-key authentication on the hosted API.
All authenticated requests must include: X-API-Key: YOUR_API_KEY
Access model
Sandbox access is immediate and bounded. It is designed for first builds, evaluation, and early integration work.
Full access unlocks broader route families, richer operational limits, and deeper capabilities. That path remains governed and available by request.
Getting your first key
Your first key is obtained through the public sandbox-access route.
curl -X POST https://api.neumera.io/v1/access/request \
-H "Content-Type: application/json" \
-d '{
"name": "Example Builder",
"email": "builder@example.com",
"intended_use": "Build a governed research assistant"
}'You do not need a dashboard or manual approval to begin basic experimentation if sandbox issuance is available.
Current posture
Sandbox access is intended for first builds and evaluation.
Some routes and capabilities remain governed by entitlement, access layer, or broader approval. If your application requires richer surfaces, use the request-full-access path from the Start page.
Header format
Send the API key in the X-API-Key header on every authenticated request.
-H "X-API-Key: YOUR_API_KEY"