get IBANs
Return the full list of Ibans of all CIs
Authorizations
Query parameters
limitinteger · int32 · max: 5000OptionalDefault: 
Number of elements on one page. Default = 10
10pageinteger · int32Required
Page number. Page value starts from 0
Header parameters
X-Request-IdstringOptional
This header identifies the call, if not passed it is self-generated. This ID is returned in the response.
Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
429
Too many requests
500
Service unavailable
application/json
get
/creditor_institutions/ibansGET /creditor_institutions/ibans?page=1 HTTP/1.1
Host: localhost:8080
Ocp-Apim-Subscription-Key: YOUR_API_KEY
Accept: */*
{
  "ibans": [
    {
      "ciFiscalCode": "text",
      "ciName": "text",
      "description": "text",
      "iban": "text",
      "label": "CUP",
      "status": "ENABLED",
      "validityDate": "2025-10-31T21:36:45.289Z"
    }
  ],
  "pageInfo": {
    "limit": 1,
    "page": 1,
    "totalElements": 1,
    "totalPages": 1
  }
}Last updated