For the complete documentation index, see llms.txt. This page is also available as Markdown.

get IBANs

L'API descritta in questa sezione permette di ottenere la lista di tutti gli IBAN degli EC aderenti alla piattaforma pagoPA.

Lo swagger è recuperabile al link https://developer.pagopa.it/pago-pa/api/elenco-IBAN-stazioni?spec=PSP

getCIsIbans

get
/creditor_institutions/ibans

Return the full list of Ibans of all CIs

Authorizations
Ocp-Apim-Subscription-KeystringRequired

The Azure Subscription Key to access this API.

Query parameters
limitinteger · int32 · max: 5000Optional

Number of elements on one page. Default = 10

Default: 10
pageinteger · 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
get/creditor_institutions/ibans
GET /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": "2026-01-01T00:00:00.000Z"
    }
  ],
  "pageInfo": {
    "limit": 1,
    "page": 1,
    "totalElements": 1,
    "totalPages": 1
  }
}

Last updated