Pagination
All endpoints with pagination use cursor pagination.
Each record in a paginated response will have a key attribute representing its unique position in the list of results.
Use the key in the before or after request fields to get the next page of data.
Sample key
"key": "8T1afC8a2FTJco8xmtsppJSWvNUKjaYaE3xv46jRHaQSRe6aT5ShECMhJKwaibyLF3cKy1VhxHUs2CXA38RUfVsn6p68P1ns9rNDNJM1obzRhWFa9n5msEJBCMgKUEH9Y8wS7Bcx9aqr6BCp8"
Sample requests
curl --location --request GET 'https://api-sb.meld.io/payments/transactions?from=2022-01-01&after=LYoQdbKcdiNDFGvc5gLnLm4nFg7t7GPEGKaNDrkZYnJdowZJFDy9gbWQG3LoJz8uKw1QoJQwu1j5T4TcxYheJWyWau' \
--header 'Authorization: {{API Key}}' \
--data-raw ''curl --location --request GET 'https://api-qa.meld.io/payments/transactions?limit=100&status=SETTLED&before=LYoQdbKcdiNDFGvc5gLnLm4nFg7t7GPEGKaNDrkZYnJdowZJFDy9gbWQG3LoJz8uKw1QoJQwu1j5T4TcxYheJWyWau' \
--header 'Authorization: {{API Key}}' \
--data-raw ''curl --location --request GET 'https://api-qa.meld.io/payments/transactions?limit=100&status=SETTLED&before=LYoQdbKcdiNDFGvc5gLnLm4nFg7t7GPEGKaNDrkZYnJdowZJFDy9gbWQG3LoJz8uKw1QoJQwu1j5T4TcxYheJWyWau' \
--header 'Authorization: {{API Key}}' \
--data-raw ''curl --location --request GET 'https://api-sb.meld.io/financial-accounts?customerId=testuser&after=8T1afC8a2FTJco8xmtsppJSWvNUKjaYaE3xv46jRHaQSRe6aT5ShECMhJKwaibyLF3cKy1VhxHUs2CXA38RUfVsn6p68P1ns9rNDNJM1obzRhWFa9n5msEJBCMgKUEH9Y8wS7Bcx9aqr6BCp8' \
--header 'Authorization: {{API Key}}' \
--data-raw ''curl --location --request GET 'https://api-sb.meld.io/financial-accounts?customerId=testuser&before=8T1afC8a2FTJco8xmtsppJSWvNUKjaYaE3xv46jRHaQSReMkVYttdMkPK9MwAATvv7zAR2C5bvwqqz36gqanEd5H3Wq5yToBXaCFayYRY1R7HXyY4LrnAbU2v6SMwYmWUme8rEnBZiKsDh39C' \
--header 'Authorization: {{API Key}}' \
--data-raw ''curl --location --request GET 'https://api-sb.meld.io/financial-accounts/transactions?customerId=testuser&startDate=2021-11-05T00:00:00Z&&after=x7Qn7TL9KB13w7dTj9og7oArf72PmbBkgcVV6Up6NPWHAq8kBotY1eyGZEACpdoYzTasTHqjZaCuN8kpUsXLEXH2452FCiC5SEGorA2Fp7wnx' \
--header 'Authorization: {{API Key}}' \curl --location --request GET 'https://api-sb.meld.io/financial-accounts/transactions?customerId=testuser&startDate=2020-10-05T00:00:00Z&endDate=2021-11-05T00:00:00Z&before=x7Qn7TL9KB13w7dTj9og7oArf72PmbBkgcVV6Up6NPWHAq8kBotY1eyGZEACtb7jJEFqihF86yXCARLPTfixmWDLc8Ra2CyaMoAhfWNqjwked' \
--header 'Authorization: {{API Key}}' \
--data-raw ''Updated 2 months ago