Browse the reference
Queries
Read operations — fetch wallets, transactions, merchants, card offers, and account data.
Mutations
Write operations — issue cards, move money, register users and businesses, and manage approvals.
Types
Objects
Response shapes returned by queries and mutations.
Input objects
Arguments you pass to operations.
Enums
Fixed sets of allowed values, like statuses and card networks.
Unions
Fields that resolve to one of several object types.
Interfaces
Shared field contracts implemented by multiple objects.
Scalars
Primitive values like DateTime and UUID.
Conventions
Authentication
The Authorization header, token endpoints, and the OAuth authorization redirect.
Errors
The error envelope, domain code prefixes, and retry guidance.
Rate limits
Per-surface request limits and what a 429 looks like.
Pagination
Offset inputs, page-size caps, and connection responses.
REST endpoints
One operation lives outside GraphQL — the file upload used for sole proprietorship registration.
Endpoints
Access tokens are minted at the same endpoint via the
generateUserAccessToken mutation, authorized with your API Key — see Authentication.
Headers
Response envelope
data— the successful payload (may be partial on error).errors— array of failures, each withcode,message, andpath.