List API methods share a common JSON structure with resource name array and meta pagination description.

Query parameters per_page and page are available to browse the list.

  • Minimum per_page: 1
  • Maximum per_page: 100
  • Default per_page: 100
  • Default page: 1

Example 👇

GEThttps://thirdparty.qonto.com/v2/transactions?iban=FR7616798000010000004321396&per_page=20&page=2
ibanFR7616798000010000004321396
per_page20
current_page2
{
  "transactions": [{...}],
  "meta": {
    "current_page": 2,
    "next_page": 3,
    "prev_page": 1,
    "total_pages": 11,
    "total_count": 210,
    "per_page": 20
  }
}