GET
/
v1
/
wallets
/
{id}
/
transactions
curl --request GET \
  --url https://api.hyperline.co/v1/wallets/{id}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "total": 1,
    "taken": 1,
    "skipped": 123
  },
  "data": [
    {
      "id": "walt_FCihRDLYhKpSpL",
      "type": "credit_paid",
      "amount": 12000,
      "invoice_id": "<string>",
      "created_at": "2023-01-20T16:04:11Z"
    }
  ]
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

take
number | null
default: 50
skip
number | null
default: 0

Response

200 - application/json
meta
object
required
data
object[]
required

List of WalletTransaction.