Overview
Entities
Legal Entity
Account Authorization Webhooks
Virtual Account
Transaction
Card
Card Group
Transfer Money
Get Crypto offramp addresses
POST
/
crypto
/
offramp
Copy
Ask AI
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"
}'
Copy
Ask AI
{
"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
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
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"
}'
Copy
Ask AI
{
"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"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.