Blockchain-backed digital value infrastructure. Integrate loyalty today; stablecoin capabilities are stubbed behind disabled feature flags until readiness gates pass.
curl -X POST https://api.paychain.cambobia.com/api/v1/oauth/token \
-H 'Content-Type: application/json' \
-d '{"grant_type":"client_credentials","client_id":"...","client_secret":"..."}'Every write takes an Idempotency-Key so retries never double-apply. See the API reference and the TypeScript SDK.
# 1. get a token (above) 2. create wallet 3. create + activate asset 4. issue
curl -X POST https://api.paychain.cambobia.com/api/v1/wallets \
-H "Authorization: Bearer $TOKEN" -H "Idempotency-Key: $(uuidgen)" \
-d '{"ownerType":"CUSTOMER","ownerReference":"alice"}'