Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/ibanforge-bic-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Ibanforge BIC API
version: 1.4.3
contact:
url: https://ibanforge.com
description: 'Operations tagged BIC across 2 of this provider''s published API definitions: ibanforge-bic-api-openapi.yml, ibanforge-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.ibanforge.com
description: Production
- url: http://localhost:3000
description: Local development
tags:
- name: BIC
description: BIC/SWIFT lookup endpoints (paid via x402)
paths:
/v1/bic/{code}:
servers:
- url: https://api.ibanforge.com
description: Production
- url: http://localhost:3000
description: Local development
get:
operationId: lookupBIC
summary: Lookup a BIC/SWIFT code
description: Returns institution details for a BIC/SWIFT code (8 or 11 characters). Costs 0.003 USDC via x402.
tags:
- BIC
security:
- x402Payment: []
- apiKey: []
parameters:
- name: code
in: path
required: true
description: BIC/SWIFT code (8 or 11 characters)
schema:
type: string
minLength: 8
maxLength: 11
example: UBSWCHZH
responses:
'200':
description: BIC lookup result
content:
application/json:
schema:
$ref: '#/components/schemas/BICLookupResult'
'400':
description: Invalid BIC format
'402':
description: Payment required (x402)
components:
schemas:
BICLookupResult:
type: object
required:
- bic
- bic8
- bic11
- found
- valid_format
- institution
- country
- city
- branch_code
- branch_info
- lei
- lei_status
- is_test_bic
- source
- cost_usdc
properties:
bic:
type: string
example: UBSWCHZH
bic8:
type: string
example: UBSWCHZH
bic11:
type: string
example: UBSWCHZHXXX
found:
type: boolean
valid_format:
type: boolean
institution:
type: string
nullable: true
example: UBS AG
country:
type: object
required:
- code
- name
properties:
code:
type: string
example: CH
name:
type: string
example: Switzerland
city:
type: string
nullable: true
address:
type: object
description: Registered head-office address (present when available — GLEIF or directory sourced)
properties:
type:
type: string
example: registered
street:
type: string
nullable: true
example: Bahnhofstrasse 45
post_code:
type: string
nullable: true
example: '8001'
region:
type: string
nullable: true
example: CH-ZH
city:
type: string
nullable: true
example: Zurich
country:
type: string
example: CH
romanized:
type: string
nullable: true
romanization:
type: string
example: original_latin
source:
type: string
example: GLEIF
language:
type: string
example: en
as_of:
type: string
format: date
address_available:
type: boolean
branch_code:
type: string
example: XXX
branch_info:
type: string
nullable: true
lei:
type: string
nullable: true
lei_status:
type: string
nullable: true
is_test_bic:
type: boolean
source:
type: string
nullable: true
note:
type: string
cost_usdc:
type: number
example: 0.003
processing_ms:
type: number
securitySchemes:
x402Payment:
type: apiKey
in: header
name: X-Payment
description: x402 USDC micropayment token
apiKey:
type: http
scheme: bearer
description: API key (Bearer ifk_xxx) — 200 free requests/month, or custom quota for paid keys
externalDocs:
description: Agent-oriented overview (llms.txt) with copy-paste examples
url: https://api.ibanforge.com/llms.txt
x-refined-from:
- ibanforge-bic-api-openapi.yml
- ibanforge-openapi.yml