Skip to main content
POST
/
wallets
/
ext
/
debit
/
crypto
Request Crypto Withdrawal
curl --request POST \
  --url https://api.obiex.finance/v1/wallets/ext/debit/crypto \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "destination": {
    "address": "wallet-address",
    "network": "",
    "memo": ""
  },
  "amount": 1,
  "currency": "string",
  "narration": "string"
}
'
import requests

url = "https://api.obiex.finance/v1/wallets/ext/debit/crypto"

payload = {
"destination": {
"address": "wallet-address",
"network": "",
"memo": ""
},
"amount": 1,
"currency": "string",
"narration": "string"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
destination: {address: 'wallet-address', network: '', memo: ''},
amount: 1,
currency: 'string',
narration: 'string'
})
};

fetch('https://api.obiex.finance/v1/wallets/ext/debit/crypto', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.obiex.finance/v1/wallets/ext/debit/crypto",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'destination' => [
'address' => 'wallet-address',
'network' => '',
'memo' => ''
],
'amount' => 1,
'currency' => 'string',
'narration' => 'string'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.obiex.finance/v1/wallets/ext/debit/crypto"

payload := strings.NewReader("{\n \"destination\": {\n \"address\": \"wallet-address\",\n \"network\": \"\",\n \"memo\": \"\"\n },\n \"amount\": 1,\n \"currency\": \"string\",\n \"narration\": \"string\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.obiex.finance/v1/wallets/ext/debit/crypto")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"destination\": {\n \"address\": \"wallet-address\",\n \"network\": \"\",\n \"memo\": \"\"\n },\n \"amount\": 1,\n \"currency\": \"string\",\n \"narration\": \"string\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.obiex.finance/v1/wallets/ext/debit/crypto")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"destination\": {\n \"address\": \"wallet-address\",\n \"network\": \"\",\n \"memo\": \"\"\n },\n \"amount\": 1,\n \"currency\": \"string\",\n \"narration\": \"string\"\n}"

response = http.request(request)
puts response.read_body
{
  "message": "Ok",
  "data": {
    "id": "10bce8f0-6aac-4342-be0a-eeab3fcdad60",
    "createdAt": "2026-02-03T11:50:15.853Z",
    "updatedAt": "2026-02-03T11:50:15.853Z",
    "active": true,
    "reference": "cb755117-15f3-4811-87c6-4ea7f547dd76",
    "description": "External payout",
    "narration": null,
    "type": "DEBIT",
    "category": "WITHDRAWAL",
    "amount": 10,
    "walletId": "cbf7bb13-fdb1-47fc-a115-d40a641ef3a6",
    "wallet": {
      "id": "cbf7bb13-fdb1-47fc-a115-d40a641ef3a6",
      "createdAt": "2022-10-12T14:41:58.219Z",
      "updatedAt": "2026-02-03T11:50:15.853Z",
      "active": true,
      "availableBalance": 4152.38309274,
      "pendingBalance": 0,
      "pendingSwapBalance": 0,
      "lockedBalance": 10,
      "userId": "dccc3940-eade-43cb-a4bc-369cd22006db",
      "currencyId": "55456608-8c9f-499d-99b4-15ceafef3212",
      "p2pBalance": 295.8510555,
      "currency": {
        "id": "55456608-8c9f-499d-99b4-15ceafef3212",
        "createdAt": "2021-11-22T10:16:50.727Z",
        "updatedAt": "2024-03-03T08:16:24.743Z",
        "active": true,
        "name": "Tether",
        "code": "USDT",
        "exchangeCode": null,
        "leverageBaseCurrencyCode": null,
        "leverageMultipler": null,
        "cardWithdrawalMultiplier": 0.9985,
        "cardFundingMultiplier": 0.9985,
        "receivable": true,
        "withdrawable": true,
        "transferrable": true,
        "minimumWithdrawal": 5,
        "minimumDeposit": 3,
        "maximumDeposit": 0,
        "maximumDailyDepositLimit": 0,
        "maximumWithdrawal": 10000000,
        "maximumDecimalPlaces": 4,
        "minimumLiquidity": 0,
        "maximumLiquidity": 0,
        "withdrawalFee": 0,
        "receiveFee": 0,
        "type": "STABLE",
        "leverageType": null,
        "receiveFeeType": "PERCENTAGE",
        "withdrawalFeeType": "PERCENTAGE",
        "maximumWithdrawalFee": 0,
        "allowUtilityPayments": true,
        "allowUnconfirmedTrading": true,
        "allowVirtualCardTransactions": true,
        "enableWithdrawalApproval": false
      },
      "totalSwappableBalance": 4152.38309274,
      "totalPendingBalance": 0
    },
    "payout": {
      "id": "42bd43ac-2e38-461a-9afd-e7130b9c33d4",
      "createdAt": "2026-02-03T11:50:15.853Z",
      "updatedAt": "2026-02-03T11:50:15.853Z",
      "active": true,
      "tries": 0,
      "transferReference": null,
      "externalReference": null,
      "channel": "NONE",
      "status": "APPROVED",
      "processedAt": null,
      "verifiedAt": null,
      "reversedAt": null,
      "dollarValue": 9.9,
      "fee": 1,
      "externalFee": 0,
      "bitcoinValue": 0.00012648,
      "transactionId": "10bce8f0-6aac-4342-be0a-eeab3fcdad60",
      "invoiceUrl": null,
      "failureReason": null,
      "bankAccount": null,
      "wallet": {
        "id": "1e9a47d8-f096-4001-860f-4c4d33794641",
        "createdAt": "2026-02-03T11:50:15.853Z",
        "updatedAt": "2026-02-03T11:50:15.853Z",
        "active": true,
        "address": "TD9xonpcnuA4Hi7XjFuN7uP2bt7ZcmDZuy",
        "memo": "",
        "network": "SOL",
        "amlRiskScore": 0,
        "amlRiskLevel": null,
        "amlAttemptExternalId": null,
        "amlExternalId": null,
        "amlIntegrator": "NONE",
        "payoutId": "42bd43ac-2e38-461a-9afd-e7130b9c33d4"
      }
    },
    "deposit": null,
    "utility": null,
    "isAddressSaved": false
  }
}

Authorizations

x-api-key
string
header
required

Headers

Body

application/json

The body is of type object.

Response

200 - application/json

Request Crypto Withdrawal

id
string
createdAt
string<date-time>
updatedAt
string<date-time>
active
boolean
reference
string
description
string
narration
unknown
type
string
category
string
amount
integer
walletId
string
wallet
object
payout
object
deposit
unknown
utility
unknown
isAddressSaved
boolean