Wallets
List Wallet Transactions
The wallet’s movement history — top-ups, drains, refunds, expiries — newest first.
GET
/
v1
/
wallets
/
{id}
/
transactions
Wallet movement history
curl --request GET \
--url https://billing.example.com/v1/wallets/{id}/transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://billing.example.com/v1/wallets/{id}/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://billing.example.com/v1/wallets/{id}/transactions', 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://billing.example.com/v1/wallets/{id}/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://billing.example.com/v1/wallets/{id}/transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://billing.example.com/v1/wallets/{id}/transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://billing.example.com/v1/wallets/{id}/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"wallet_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "top_up",
"source": "manual",
"amount": 123,
"remaining": 123,
"balance_after": 123,
"invoice_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
]
}{
"error": {
"code": "validation_failed",
"message": "<string>"
}
}{
"error": {
"code": "validation_failed",
"message": "<string>"
}
}Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string (uuid) | Yes | The wallet ID. |
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Max transactions to return. Default 100, max 500. |
Example request
curl "https://api.recurso.dev/v1/wallets/5a8c2f91-3e7b-4d0a-9c6f-2b4e8a1d7c53/transactions?limit=20" \
-H "Authorization: Bearer $API_KEY"
Example response
{
"data": [
{
"id": "2c8f4a71-6d3e-4b9c-a5f8-0e7b2d9c4a63",
"wallet_id": "5a8c2f91-3e7b-4d0a-9c6f-2b4e8a1d7c53",
"type": "drain",
"amount": 1180000,
"balance_after": 3820000,
"invoice_id": "7d2b9f41-8c3e-4a5d-b6f0-1e4a7c9d2b58",
"created_at": "2026-08-01T12:00:00Z"
},
{
"id": "7e3b9d25-8f1c-4a6e-b2d7-4c9f0a5e8b12",
"wallet_id": "5a8c2f91-3e7b-4d0a-9c6f-2b4e8a1d7c53",
"type": "top_up",
"source": "manual",
"amount": 5000000,
"remaining": 3820000,
"balance_after": 5000000,
"created_at": "2026-07-20T09:00:00Z"
}
]
}
drain is the wallet settling an invoice (it posts DR Customer Credit /
CR Accounts Receivable, Code 12); invoice_id is the invoice it paid.
On top_up rows, remaining is the undrained residue of that top-up.
Errors
| Status | Code | When | Fix |
|---|---|---|---|
400 | validation_failed | id in the path is not a UUID | Use the wallet’s UUID |
404 | not_found | Wallet doesn’t exist (or belongs to another tenant) | Check the ID via List Wallets |
401 | unauthorized | Missing or invalid API key / session | Send Authorization: Bearer $API_KEY |
⌘I
Wallet movement history
curl --request GET \
--url https://billing.example.com/v1/wallets/{id}/transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://billing.example.com/v1/wallets/{id}/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://billing.example.com/v1/wallets/{id}/transactions', 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://billing.example.com/v1/wallets/{id}/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://billing.example.com/v1/wallets/{id}/transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://billing.example.com/v1/wallets/{id}/transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://billing.example.com/v1/wallets/{id}/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"wallet_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "top_up",
"source": "manual",
"amount": 123,
"remaining": 123,
"balance_after": 123,
"invoice_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
]
}{
"error": {
"code": "validation_failed",
"message": "<string>"
}
}{
"error": {
"code": "validation_failed",
"message": "<string>"
}
}