Skip to main content
GET
/
wallets
/
USDT
Get Wallet Balance
curl --request GET \
  --url https://api.obiex.finance/v1/wallets/USDT
import requests

url = "https://api.obiex.finance/v1/wallets/USDT"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.obiex.finance/v1/wallets/USDT', 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/USDT",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

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

curl_close($curl);

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

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

func main() {

url := "https://api.obiex.finance/v1/wallets/USDT"

req, _ := http.NewRequest("GET", url, nil)

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

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

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.obiex.finance/v1/wallets/USDT")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.obiex.finance/v1/wallets/USDT")

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

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "message": "Ok",
  "data": {
    "id": "fbdefc89-2a3a-4d33-8961-26eb18f2eb5e",
    "createdAt": "2025-05-17T10:39:37.553Z",
    "updatedAt": "2025-05-17T10:39:37.553Z",
    "active": true,
    "availableBalance": 0,
    "pendingBalance": 0,
    "pendingSwapBalance": 0,
    "lockedBalance": 0,
    "userId": "cdf0e3c5-fbbc-4830-8e92-7ed3a1d40c04",
    "currencyId": "55456608-8c9f-499d-99b4-15ceafef3212",
    "p2pBalance": 0,
    "currency": {
      "id": "55456608-8c9f-499d-99b4-15ceafef3212",
      "createdAt": "2021-11-22T09:16:50.727Z",
      "updatedAt": "2022-08-31T14:40:08.473Z",
      "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": 0,
      "minimumDeposit": 0,
      "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": false,
      "enableWithdrawalApproval": false
    },
    "totalSwappableBalance": 0,
    "totalPendingBalance": 0
  }
}

Response

200 - application/json

Get Wallet Balance

message
string
data
object