Quote a card account deposit
curl --request POST \
--url https://business.planewallet.org/api/v1/card-account/quote \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": "50.00"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({amount: '50.00'})
};
fetch('https://business.planewallet.org/api/v1/card-account/quote', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://business.planewallet.org/api/v1/card-account/quote"
payload = { "amount": "50.00" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"depositAmount": "100.00",
"fee": "1.50",
"creditAmount": "98.50",
"rateBps": 150,
"currency": "USD",
"asset": "USDT",
"network": "TRON",
"feeMode": "deducted_from_deposit"
}{
"statusCode": 123,
"message": "<string>"
}Balance
Quote a card account deposit
Required permission: funding:write. Sandbox is isolated from live funds. Live integration availability is checked server-side.
POST
/
api
/
v1
/
card-account
/
quote
Quote a card account deposit
curl --request POST \
--url https://business.planewallet.org/api/v1/card-account/quote \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": "50.00"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({amount: '50.00'})
};
fetch('https://business.planewallet.org/api/v1/card-account/quote', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://business.planewallet.org/api/v1/card-account/quote"
payload = { "amount": "50.00" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"depositAmount": "100.00",
"fee": "1.50",
"creditAmount": "98.50",
"rateBps": 150,
"currency": "USD",
"asset": "USDT",
"network": "TRON",
"feeMode": "deducted_from_deposit"
}{
"statusCode": 123,
"message": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Whole USD deposit amount, minimum 10 USD or the issuer minimum, whichever is higher. Fee is deducted from the amount.
Pattern:
^\d+(\.\d{1,2})?$Example:
"50.00"
Response
Success
Pattern:
^\d+(\.\d{1,2})?$Example:
"100.00"
Pattern:
^\d+(\.\d{1,2})?$Example:
"1.50"
Pattern:
^\d+(\.\d{1,2})?$Example:
"98.50"
Example:
150
Available options:
USD Available options:
USDT Available options:
TRON Available options:
deducted_from_deposit