iban.pizza
API reference

What the service is answering from.

The provenance of the loaded data: which national registry is loaded for which country, when each was retrieved, how many records it holds, and whether it counts as stale. Also whether the EPC scheme register is loaded and how many participants each scheme has. Use this to judge answers. "Bank code valid" means something different against a register that is two days old than against one that is two years old. The same dates appear per answer as `dataAsOf`.

GET
/v2/data

The provenance of the loaded data: which national registry is loaded for which country, when each was retrieved, how many records it holds, and whether it counts as stale. Also whether the EPC scheme register is loaded and how many participants each scheme has.

Use this to judge answers. "Bank code valid" means something different against a register that is two days old than against one that is two years old. The same dates appear per answer as dataAsOf.

Response Body

application/json

curl -X GET "https://example.com/v2/data"
{  "records": 0,  "countries": [    "string"  ],  "stale": true,  "staleAfter": "string",  "sources": [    {      "country": "string",      "name": "string",      "url": "string",      "retrievedAt": "2019-08-24T14:15:22Z",      "ageDays": 0,      "records": 0,      "stale": true    }  ],  "schemes": {    "loaded": true,    "institutions": 0,    "asOf": "2019-08-24",    "participants": {      "property1": 0,      "property2": 0    }  }}