Overview
Access transaction limits (maximums & minimums) for our fiat > crypto service. These limits are shared for buying crypto and reset daily at around 7:30 AM UTC. All limits are represented in USD.
KYC verification is optional for the aforementioned services and will increase a contact's daily limits from the unverified tier maximum to the verified tier maximum.
| Payment Method | Daily Transaction Maximum (unverified) | Daily Transaction Maximum (KYC'd) | Minimum Transaction |
|---|---|---|---|
| All | $150 | $2500 | $5 |
Legacy Weekly Limits
Note that we deprecated weekly limits and now all limits are daily. If you find any data fields referencing weekly limits or balances, please interpret them as daily instead.
Limit Resets
Note that all transaction limits are daily and reset at 7:30 AM UTC
1. Transaction Limits (GET)
No Secret Key or Super JWT Required
let url = `${ROOT}/v1/admin/transactionLimits`;
axios.get(url)
.then(result => console.log(result))
.catch(err => console.log(err));
{ message: 'Successfully retrieved transaction limits for fiat > crypto.',
code: 200,
data: {
unverifiedDailyLimit: 150,
verifiedDailyLimit: 2500
}
}
Updated 5 months ago