Account Management
Account Management groups the read-only endpoints you use for reconciliation, dashboards and operational monitoring.
When to use each one
| Question | Endpoint |
|---|---|
| How much do I have available right now? | GET /user/balance |
| What are my account data, limits and fees? | GET /user |
| List transactions with filters | GET /user/transactions |
| Volume, count and conversion rate | GET /user/summary |
Examples
Best practices
- Short cache on balance (5 to 30 seconds), avoids rate limit
- Paginate the statement with
limitand cursor, never fetch everything at once - Reconcile by
clientReferencewhen comparing with your internal database - Use the summary for dashboards, avoids summing transactions on the client