QUICKSTART

From zero to first API call in 60 seconds.

  1. 1Create an account. Sign up or sign in.
  2. 2Generate an API token. Dashboard → Profile → API Tokens.
  3. 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 }
}

SDKs

PHP

composer require tridax/sdk View on GitHub →

Node.js

npm install @tridax/sdk View on GitHub →

Python

pip install tridax View on GitHub →