Browse collection docs
View the published collection documentation at our custom domain.
Run in Postman
What’s included
The collection covers the full API surface organized into key flows:- Authentication — OTP request/verify, token refresh, Ed25519 challenge and sign-in
- Business — Associations, assets, wallets, beneficiaries, payment destinations
- Connect — Quotes, routing, on-ramp, off-ramp, transaction execution
- Transactions — Init, load, and status
- Applications — Registration, lifecycle, webhooks
Getting started
Fork the collection
Click Run in Postman above to fork the collection into your workspace. The collection includes pre-wired collection variables so requests chain naturally.
Set your environment variables
Open the collection’s Variables tab and fill in:
Leave
| Variable | Description |
|---|---|
url | Base URL — always https://api.zeam.money/gw |
bearer_token | Your idToken from OTP or Connect sign-in |
x_zeam_auth | Your connect secret (required for Connect endpoints) |
association_id | Your association UUID |
ed25519_bearer_token, wallet_id, beneficiary_id, and similar fields empty — they are populated automatically by the collection’s test scripts as you run requests in order.Authenticate
Run OTP Request → Verify OTP in sequence. The test script on Verify OTP saves the returned
idToken and refreshToken into bearer_token and refresh_token automatically.For Ed25519 app auth, run Ed25519 Auth instead.Authentication reference
| Endpoint group | Auth required |
|---|---|
/v1/public/auth/* | None — these endpoints issue credentials |
/v1/business/* | OAuth bearer (Authorization: Bearer $ID_TOKEN) |
/v1/application/* | OAuth bearer |
/v1/transaction/* | OAuth bearer |
/v1/connect-* | Connect bearer + x-zeam-auth: <connect-secret> (except /v1/connect-query which accepts either) |
/v1/stellar/* | OAuth bearer |
Related
- Quickstart — end-to-end guide for your first authenticated request
- Authentication overview
- API Reference

