I

IBANforge · Iban Batch

by IBANforge

POSTBase

$0.004

per call · USD Coin on Base

Validate up to 100 IBANs in one call at $0.002 per IBAN (2.5x cheaper per IBAN than single calls at $0.005, and one settlement instead of N). Use for CSV cleanup, customer DB dedup, or pre-flight payout list triage. Production · server processing <5ms (network excluded — measure your own round trip on GET /ping) for a 100-IBAN batch · 121,000+ BICs · v1.4.3.

Endpoint

POST https://api.ibanforge.com/v1/iban/batch

1

Calls / 30d

1

Unique payers / 30d

Aug 17

Last called

exact

Payment scheme

Call this service

TypeScript · @x402/fetch
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";

const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);

const res = await fetchWithPay("https://api.ibanforge.com/v1/iban/batch", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    "ibans": [
      "CH1000230000000012345",
      "DE89370400440532013000"
    ]
  }),
});
const data = await res.json();
cURL
curl -X POST \
  "https://api.ibanforge.com/v1/iban/batch" \
  -H "Content-Type: application/json" \
  -d '{"ibans":["CH1000230000000012345","DE89370400440532013000"]}' \
  -H "X-PAYMENT: <signed x402 payment>"

Example response

{
  "_example_notice": "ILLUSTRATIVE SAMPLE — these are demo values for a fixed record, NOT the data for the resource you requested. Do not report them to a user. Authenticate (Authorization: Bearer ifk_...) or pay via x402 to get the real response.",
  "cost_usdc": 0.004,
  "count": 2,
  "results": [
    {
      "bic": {
        "bank_name": "UBS Switzerland AG",
        "city": "Zürich",
        "code": "UBSWCHZH"
      },
      "country": {
        "code": "CH",
        "name": "Switzerland"
      },
      "iban": "CH1000230000000012345",
      "valid": true
    },
    {
      "bic": {
        "bank_name": "Commerzbank",
        "city": "Köln",
        "code": "COBADEFFXXX"
      },
      "country": {
        "code": "DE",
        "name": "Germany"
      },
      "iban": "DE89370400440532013000",
      "valid": true
    }
  ],
  "valid_count": 2
}

Payment details

Pay to0xd13bd0a4120ba301125290e5cc0c7efd4cb40a55
AssetUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913
NetworksBase
Schemesexact

Is this your API?

Pin it to the top of Other and the homepage with a featured placement.

Get featured →

More from IBANforge & similar services

I

IBANforge · BIC

api.ibanforge.com

Resolve a BIC/SWIFT code (8 or 11 chars) into the underlying bank: name, country, city, LEI, and registered head-office address (where available). Use only when you already have the BIC — for IBAN inputs, prefer /v1/iban/validate which resolves the BIC for you. Production · server processing <5ms (network excluded — measure your own round trip on GET /ping) · 121,000+ BICs (39,000+ LEI-enriched via GLEIF, refreshed monthly) · v1.4.4.

GETBaseDeveloper Tools
$0.003 / call8 calls / 30d
I

IBANforge · CH Clearing

api.ibanforge.com

Resolve a Swiss BC-Nummer / IID (1-5 digits) into institution name, type, address, BIC, the full payment-rail participation (SIC, RTGS CHF, Instant Payments CHF, euroSIC, LSV+/BDD) and the QR-IID allocation. Backed by 1,100+ SIX BankMaster entries (refreshed monthly) — the canonical Swiss banking source. Production · server processing <5ms (network excluded — measure your own round trip on GET /ping) · 1,100+ SIX BankMaster entries, refreshed monthly · v1.4.3.

GETBaseOther
$0.003 / call5 calls / 30d
I

IBANforge · Iban Validate

api.ibanforge.com

Validate a European IBAN and enrich it with bank, compliance and routing data. Use whenever the user mentions an IBAN, a bank account, a SEPA payment or asks who the bank is. Returns: valid, country, BIC/SWIFT, bank name, EMI/vIBAN flag, SEPA + VoP reachability, risk score, Swiss bc_nummer for CH/LI. Production · server processing <5ms (network excluded — measure your own round trip on GET /ping) · 121,000+ BICs (39,000+ LEI via GLEIF) + 1,100+ SIX · v1.5.0.

POSTBaseOther
$0.005 / call3 calls / 30d