# minia2a BIC Lookup

> minia2a BIC Lookup is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up BIC (Bank Identifier Code) details for a given bank identifier, returning bank routing and institution information.

## Facts

- Endpoint: GET https://minia2a.uk/x402/bic-lookup
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-bic-lookup-bc84e44a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZTvH2vj4N1vDWJlu0BEpx

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability minia2a-bic-lookup-bc84e44a
```

Example prompt: Can you look up the bank details for BIC code DEUTDEDB — I need to know what bank and country it belongs to?

## When to prefer this

Use this endpoint when you need to resolve or validate a BIC/SWIFT code to its associated bank and country details, particularly in financial automation workflows, invoice processing, or international payment preparation. Prefer this over manual lookup when integrating into an agent pipeline that processes banking data at $0.01 per call.

## Known failure modes

- Invalid or malformed BIC code returns an error or empty result
- BIC not found in database returns no match
- Missing required input parameter causes a 400-level error
- Service unavailable returns a 5xx error
- Payment not fulfilled (x402) causes request to be rejected

## How this service works

minia2a service: x402-bic-lookup

## Output

Returns bank institution details associated with the provided BIC/SWIFT code, including bank name, country, and potentially branch or routing information derived from the identifier.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-bic-lookup-bc84e44a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
