# ChainVerdict BIC/SWIFT Validation API

> ChainVerdict BIC/SWIFT Validation API is a paid API for AI agents from chainverdict.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Validates an 8 or 11 character BIC/SWIFT code to confirm it is a legitimate bank identifier

## Facts

- Endpoint: GET https://chainverdict.xyz/v1/validate/bic/%7Bbic%7D
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainverdict-bic-swift-validation-api-3b54df3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jdndQNbOAHBbeoC1_ve44

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 chainverdict-bic-swift-validation-api-3b54df3e
```

Example prompt: Can you check if the BIC code DEUTDEDB is a valid SWIFT code before I set up this international wire transfer?

## When to prefer this

Use this endpoint when you need a quick, cheap ($0.001 USDC) per-call BIC/SWIFT code validation in an automated payment workflow, fintech onboarding flow, or accounts payable process. Prefer it over manual lookups or heavier bank directory APIs when you only need pass/fail validity for individual codes at low cost.

## Known failure modes

- Invalid BIC format (not 8 or 11 characters) returns validation failure
- Unrecognized BIC not found in reference data returns invalid verdict
- Missing BIC path parameter returns 400 or routing error
- Unpaid request returns HTTP 402 with payment requirements
- Network timeout on upstream lookup returns 5xx error

## How this service works

x402 v2 pay-per-call. Unpaid requests receive HTTP 402 with payment requirements.

## Output

Returns a validation verdict indicating whether the provided BIC/SWIFT code is valid, potentially including structured details about the bank identifier such as bank code, country code, location code, and branch code components.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "bic"
     ],
     "properties": {
      "bic": {
       "type": "string",
       "description": "BIC/SWIFT code, 8 or 11 chars"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainverdict-bic-swift-validation-api-3b54df3e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chainverdict.xyz](https://www.zero.xyz/host/chainverdict.xyz/llms.txt)
