Transfer Money
Get Crypto offramp addresses
Overview
Entities
Legal Entity
Virtual Account
Transaction
Card
Card Group
Transfer Money
Get Crypto offramp addresses
POST
/
crypto
/
offramp
curl --request POST \
--url https://api.joinslash.com/crypto/offramp \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"virtualAccountId": "<string>",
"paymentRail": "ach",
"currency": "usdt"
}'
{
"wallet": {
"id": "<string>",
"type": "off_ramp",
"status": "pending_active",
"subaccountId": "<string>",
"slashAccountGroupId": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
},
"addresses": [
{
"id": "<string>",
"walletId": "<string>",
"status": "pending_active",
"currency": "usdc",
"chain": "ethereum",
"address": "<string>",
"method": "wire",
"blockchainMemo": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
]
}
Authorizations
Authentication from public API requests
Body
application/json
The id of the virtual account to offramp funds to.
Available options:
ach
, wire
Available options:
usdt
, usdc
Response
200
application/json
OK
Available options:
pending_active
, active
, deactivated
Available options:
usdc
, usdt
Available options:
ethereum
, avalanche
, base
, ethereum
, optimism
, polygon
, arbitrum
, solana
, stellar
, base
, tron
Available options:
wire
, ach
curl --request POST \
--url https://api.joinslash.com/crypto/offramp \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"virtualAccountId": "<string>",
"paymentRail": "ach",
"currency": "usdt"
}'
{
"wallet": {
"id": "<string>",
"type": "off_ramp",
"status": "pending_active",
"subaccountId": "<string>",
"slashAccountGroupId": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
},
"addresses": [
{
"id": "<string>",
"walletId": "<string>",
"status": "pending_active",
"currency": "usdc",
"chain": "ethereum",
"address": "<string>",
"method": "wire",
"blockchainMemo": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
]
}