# DE IBAN Format Check

> DE IBAN Format Check is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Validates whether a given text string is a correctly formatted German IBAN (DE-prefixed IBAN)

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/de-iban-format-check
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/de-iban-format-check-d73dffcc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_deRQQGOhWtsSRCag1GqIp

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 de-iban-format-check-d73dffcc -d '<json body>'
```

Example prompt: Can you check whether 'DE89370400440532013000' is a valid German IBAN format?

## When to prefer this

Use this endpoint when you need a quick, low-cost ($0.002) programmatic check of whether a string conforms to the German IBAN (DE-prefix) format, especially in payment pipelines, form validation flows, or data cleaning tasks involving German bank accounts. Prefer this over manual regex checks when you want a maintained, API-backed validation service.

## Known failure modes

- Missing or empty text field returns an error
- Non-string input may cause a 400 bad request
- Network timeout if service is unavailable
- Ambiguous response schema may make it difficult to distinguish format-invalid vs structurally malformed input
- Service may not distinguish between checksum failure and structural format failure

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object indicating whether the input text is a valid German IBAN format, with a result field (e.g. 'processed') and a status field (e.g. 'success' or error indicator).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/de-iban-format-check-d73dffcc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
