curl --request POST \
--url https://api.sand.getivy.de/api/service/transaction/list \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"from": 123,
"to": 123,
"afterCursor": "<string>"
}'
{
"data": [
{
"id": "<string>",
"amount": "<string>",
"currency": "<string>",
"side": "credit",
"creditor": {
"type": "iban",
"iban": {
"iban": "<string>",
"bic": "<string>",
"accountHolderName": "<string>"
},
"sortCode": {
"sortCode": "<string>",
"accountNumber": "<string>",
"accountHolderName": "<string>"
},
"bankCode": {
"accountNumber": "<string>",
"code": "<string>",
"accountHolderName": "<string>"
},
"bban": {
"bban": "<string>",
"accountHolderName": "<string>",
"bic": "<string>"
}
},
"debtor": {
"type": "iban",
"iban": {
"iban": "<string>",
"bic": "<string>",
"accountHolderName": "<string>"
},
"sortCode": {
"sortCode": "<string>",
"accountNumber": "<string>",
"accountHolderName": "<string>"
},
"bankCode": {
"accountNumber": "<string>",
"code": "<string>",
"accountHolderName": "<string>"
},
"bban": {
"bban": "<string>",
"accountHolderName": "<string>",
"bic": "<string>"
}
},
"balance": {
"before": "<string>",
"after": "<string>"
},
"bankStatementReference": "<string>",
"transactionDate": 123
}
],
"paging": {
"hasNext": true,
"nextCursor": "<string>"
}
}
Retrieve a paginated list of transactions for the specified time period
curl --request POST \
--url https://api.sand.getivy.de/api/service/transaction/list \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"from": 123,
"to": 123,
"afterCursor": "<string>"
}'
{
"data": [
{
"id": "<string>",
"amount": "<string>",
"currency": "<string>",
"side": "credit",
"creditor": {
"type": "iban",
"iban": {
"iban": "<string>",
"bic": "<string>",
"accountHolderName": "<string>"
},
"sortCode": {
"sortCode": "<string>",
"accountNumber": "<string>",
"accountHolderName": "<string>"
},
"bankCode": {
"accountNumber": "<string>",
"code": "<string>",
"accountHolderName": "<string>"
},
"bban": {
"bban": "<string>",
"accountHolderName": "<string>",
"bic": "<string>"
}
},
"debtor": {
"type": "iban",
"iban": {
"iban": "<string>",
"bic": "<string>",
"accountHolderName": "<string>"
},
"sortCode": {
"sortCode": "<string>",
"accountNumber": "<string>",
"accountHolderName": "<string>"
},
"bankCode": {
"accountNumber": "<string>",
"code": "<string>",
"accountHolderName": "<string>"
},
"bban": {
"bban": "<string>",
"accountHolderName": "<string>",
"bic": "<string>"
}
},
"balance": {
"before": "<string>",
"after": "<string>"
},
"bankStatementReference": "<string>",
"transactionDate": 123
}
],
"paging": {
"hasNext": true,
"nextCursor": "<string>"
}
}
API key for authentication
The list of transactions
The response is of type object
.
Was this page helpful?