Deposits
Create Deposit
Retrieve the deposit methods for an account, including crypto and bank transfer. Bitcoin deposits are converted by Relay directly to USDT on Plasma in the destination account's wallet. Crypto deposits require a $10 minimum.
post/deposits
Headers
Idempotency-Keystring
Example:d9105228-4a08-46b1-8b91-42fed586d383
A unique key that makes this request safe to retry. See Idempotent requests.
Request body
Example request
{
"amount": 50,
"destination": "biz_xxxxxxxxxxxxxx"
}Response
deposit created
Example response
{
"account_id": "biz_xxxxxxxxxxxxxx",
"amount": "50.00",
"hosted_url": "https://whop.com/deposit/biz_xxxxxxxxxxxxxx/",
"methods": {
"bank": {
"currencies": [
{
"account_number": "8825310472",
"currency": "USD",
"deposit_bank_address": "2115 Linwood Avenue, Fort Lee, New Jersey 07024",
"deposit_bank_name": "Cross River Bank",
"deposit_beneficiary_name": "Shine Time Auto Detailing",
"deposit_reference": "SHINE-1042",
"rails": [
"wire"
],
"routing_number": "021214891",
"swift_bic": "CRBAUS33"
}
]
},
"crypto": [
{
"deposit_address": "soladdr",
"icon_url": "https://whop.com/_static/images/crypto/solana.svg",
"name": "Solana",
"supported_currencies": [
{
"icon_url": "https://whop.com/_static/images/crypto/pyusd.svg",
"name": "PYUSD"
}
]
}
]
},
"object": "deposit"
}