GET
/
wallets
/
{wallet_id}
/
statements
curl --request GET \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id}/statements \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "statements": [
      {
        "id": "wst_123456",
        "timeline": "November 2023",
        "source": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

wallet_id
string
required

The Wallet ID.

Response

200
application/json
Successfully retrieved the list of wallet statements.
success
boolean
Example:

true

data
object