Get User Transactions
curl --request GET \
--url https://api.obiex.finance/v1/transactions/meimport requests
url = "https://api.obiex.finance/v1/transactions/me"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.obiex.finance/v1/transactions/me', 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/transactions/me",
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/transactions/me"
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/transactions/me")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.obiex.finance/v1/transactions/me")
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": "437b425a-3f2e-4eb7-a753-7d7907ab25c0",
"createdAt": "2026-03-27T10:25:59.722Z",
"updatedAt": "2026-03-27T10:25:59.722Z",
"active": true,
"reference": "8b68da4e-b933-42c0-95d0-80f253da89d5",
"description": "Swap from USDT to NGNX",
"narration": null,
"type": "CREDIT",
"category": "SWAP",
"amount": 14260,
"walletId": "4d20bc14-3fe7-48dc-8d2f-e4f9a6105d77",
"wallet": {
"id": "4d20bc14-3fe7-48dc-8d2f-e4f9a6105d77",
"createdAt": "2025-05-21T15:18:07.606Z",
"updatedAt": "2026-03-27T10:25:59.722Z",
"active": true,
"availableBalance": 45520,
"pendingBalance": 0,
"pendingSwapBalance": 0,
"lockedBalance": 10100,
"totalSwappableBalance": 45520,
"totalPendingBalance": 0,
"userId": "51ec42a0-6c2f-4435-86ed-fa7bae079a57",
"currencyId": "de3423cb-e81c-464f-8bb4-d9da15a37e8b"
}
}
]
}Transactions
Get User Transactions
GET
/
transactions
/
me
Get User Transactions
curl --request GET \
--url https://api.obiex.finance/v1/transactions/meimport requests
url = "https://api.obiex.finance/v1/transactions/me"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.obiex.finance/v1/transactions/me', 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/transactions/me",
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/transactions/me"
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/transactions/me")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.obiex.finance/v1/transactions/me")
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": "437b425a-3f2e-4eb7-a753-7d7907ab25c0",
"createdAt": "2026-03-27T10:25:59.722Z",
"updatedAt": "2026-03-27T10:25:59.722Z",
"active": true,
"reference": "8b68da4e-b933-42c0-95d0-80f253da89d5",
"description": "Swap from USDT to NGNX",
"narration": null,
"type": "CREDIT",
"category": "SWAP",
"amount": 14260,
"walletId": "4d20bc14-3fe7-48dc-8d2f-e4f9a6105d77",
"wallet": {
"id": "4d20bc14-3fe7-48dc-8d2f-e4f9a6105d77",
"createdAt": "2025-05-21T15:18:07.606Z",
"updatedAt": "2026-03-27T10:25:59.722Z",
"active": true,
"availableBalance": 45520,
"pendingBalance": 0,
"pendingSwapBalance": 0,
"lockedBalance": 10100,
"totalSwappableBalance": 45520,
"totalPendingBalance": 0,
"userId": "51ec42a0-6c2f-4435-86ed-fa7bae079a57",
"currencyId": "de3423cb-e81c-464f-8bb4-d9da15a37e8b"
}
}
]
}Was this page helpful?
⌘I