Build on PayChain

Blockchain-backed digital value infrastructure. Integrate loyalty today; stablecoin capabilities are stubbed behind disabled feature flags until readiness gates pass.

1. Get an access token

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":"..."}'

2. Move value

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"}'

Next

API reference

Wallets, assets, transactions, stablecoin workflows

Webhooks

Signed events with replay protection

TypeScript SDK

Auth, idempotency, retries, webhook verify

Status

Live API / database / blockchain health