Developer platform
Build with Tridax
REST APIs, webhooks, and SDKs to plug Tridax into anything.
QUICKSTART
From zero to first API call in 60 seconds.
- 1Create an account. Sign up or sign in.
- 2Generate an API token. Dashboard → Profile → API Tokens.
- 3Hit the API. All endpoints under
https://tridax.org/api/v1
# Get your customers
curl https://tridax.org/api/v1/customers \ -H "Authorization: Bearer YOUR_TOKEN" \ -H "Accept: application/json" # Returns { "data": [...], "pagination": { "page": 1, "total": 142 } }