Docs/Getting started/Quickstart

Quickstart

From zero to a live response in three steps.

Three steps to your first reconciled data point.

1. Get an API key

Issue one from the dashboard. Public read endpoints work without a key; account & subscription endpoints require one. In a dev environment you can bootstrap a key:

# dev only (ENABLE_DEV_SIGNUP=true)
curl -X POST https://www.quanaris.com/v1/auth/dev-signup -d '{}'
# → { "apiKey": "qnr_live_…", "tenantId": "…", "plan": "free" }

2. Make your first call

Fetch a full market snapshot for a token — no key needed for public reads:

curl https://www.quanaris.com/v1/token/C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ/overview

3. Authenticate for the rest

Pass your key in the x-api-key header on any endpoint:

curl https://www.quanaris.com/v1/token/C7heQqfNzdMbUFQwcHkL9FvdwsFsDRBnfwZDDyWYCLTZ/trade-data \
  -H "x-api-key: $QUANARIS_KEY"
Next — read Authentication, then browse Token data.