Skip to main content
GET
/
treasury
/
transactions
List transactions
curl --request GET \
  --url https://api.allcovered.xyz/v1/treasury/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "deposit",
      "amount": 123,
      "currency": "<string>",
      "network": "<string>",
      "status": "<string>",
      "reference": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 50,
    "total": 100,
    "has_more": true
  }
}
Retrieve a paginated list of treasury transactions.

Authorizations

Authorization
string
header
required

API key from StableBase dashboard

Query Parameters

page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
limit
integer
default:50

Number of items per page

Required range: 1 <= x <= 100
from
string<date>

Filter by start date (ISO 8601)

to
string<date>

Filter by end date (ISO 8601)

type
enum<string>

Filter by transaction type

Available options:
deposit,
withdrawal,
conversion

Response

List of transactions

data
object[]
required
meta
object
required