const options = {method: 'GET'};
fetch('https://gp-auth-module.prod.gnosispay.com/user/statement', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"amount": "<string>",
"currency": "<string>",
"decimals": 123,
"originalAmount": "<string>",
"originalCurrency": "<string>",
"originalDecimals": 123,
"isCredit": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>",
"authorizationId": 123,
"mcc": "<string>",
"authorizationCode": "<string>",
"merchant": {
"name": "<string>",
"city": "<string>",
"country": "<string>",
"categoryCode": "<string>"
},
"entryMode": "<string>",
"billing": {
"billingAmount": "<string>",
"billingCurrency": {
"symbol": "<string>",
"code": "<string>",
"decimals": 123,
"name": "<string>"
}
},
"transactionCurrency": {
"symbol": "<string>",
"code": "<string>",
"decimals": 123,
"name": "<string>"
},
"cardId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"cardToken": "<string>",
"clearedAt": "2023-11-07T05:31:56Z",
"isPending": true,
"transactions": [
{
"status": "<string>",
"to": "<string>",
"value": "<string>",
"data": "<string>",
"hash": "<string>"
}
],
"declineReason": {
"code": "<string>",
"message": "<string>"
},
"wallet": {
"deviceBrand": "<string>",
"deviceModel": "<string>",
"deviceType": "<string>",
"deviceName": "<string>"
}
}
],
"pagination": {
"nextCursor": "<string>",
"hasNext": true
}
}Returns a chronological list of all financial movements for the authenticated user’s account, including card transactions (both pending and settled), deposits, and withdrawals.
const options = {method: 'GET'};
fetch('https://gp-auth-module.prod.gnosispay.com/user/statement', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"amount": "<string>",
"currency": "<string>",
"decimals": 123,
"originalAmount": "<string>",
"originalCurrency": "<string>",
"originalDecimals": 123,
"isCredit": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>",
"authorizationId": 123,
"mcc": "<string>",
"authorizationCode": "<string>",
"merchant": {
"name": "<string>",
"city": "<string>",
"country": "<string>",
"categoryCode": "<string>"
},
"entryMode": "<string>",
"billing": {
"billingAmount": "<string>",
"billingCurrency": {
"symbol": "<string>",
"code": "<string>",
"decimals": 123,
"name": "<string>"
}
},
"transactionCurrency": {
"symbol": "<string>",
"code": "<string>",
"decimals": 123,
"name": "<string>"
},
"cardId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"cardToken": "<string>",
"clearedAt": "2023-11-07T05:31:56Z",
"isPending": true,
"transactions": [
{
"status": "<string>",
"to": "<string>",
"value": "<string>",
"data": "<string>",
"hash": "<string>"
}
],
"declineReason": {
"code": "<string>",
"message": "<string>"
},
"wallet": {
"deviceBrand": "<string>",
"deviceModel": "<string>",
"deviceType": "<string>",
"deviceName": "<string>"
}
}
],
"pagination": {
"nextCursor": "<string>",
"hasNext": true
}
}Documentation Index
Fetch the complete documentation index at: https://gnosispay-feat-v2-auth-module.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.