API
Authentication
How to authenticate requests to the Dex API.
To call Dex API endpoints, include your API key as a Bearer token.
Base URL
https://api.prod.getdex.com
Required header
Authorization: Bearer dex_your_api_key
Content-Type: application/json
Keep your API key private. Never expose it in client-side apps, public repos, or screenshots.
Where to find your API key
Open Dex → Settings → API.

Quick test
curl --request GET \
--url https://api.prod.getdex.com/v1 \
--header 'Authorization: Bearer dex_your_api_key'

