Skip to main content
GET
/
wallets
/
history
Transaction History
curl --request GET \
  --url https://api.example.com/wallets/history

Request

limit
number
default:"20"
Number of transactions to return.
offset
number
default:"0"
Number of transactions to skip.
curl "https://api.midasprotocol.org/wallets/history?limit=10&offset=0" \
  -H "Authorization: Bearer pp_your_key"

Response

{
  "data": [
    {
      "id": "uuid",
      "type": "PAYMENT",
      "direction": "outgoing",
      "amount": "25.00",
      "currency": "USDC",
      "rail": "internal",
      "fees": "0.50",
      "status": "COMPLETED",
      "createdAt": "2026-01-01T00:00:00.000Z"
    }
  ],
  "pagination": {
    "total": 42,
    "limit": 10,
    "offset": 0,
    "hasMore": true
  }
}