# KiHustle DE-UStID Format Check

> KiHustle DE-UStID 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 conforms to the German VAT ID (Umsatzsteuer-Identifikationsnummer) format

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/de-ustid-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/kihustle-de-ustid-format-check-06107ad3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wyhKmjrHpskhCP4iSYOc_

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 kihustle-de-ustid-format-check-06107ad3 -d '<json body>'
```

Example prompt: Can you check if 'DE123456789' is a correctly formatted German VAT ID (UStID)?

## When to prefer this

Use this endpoint when you need a lightweight, low-cost ($0.002/call) format check for German UStID numbers before processing invoices, onboarding suppliers, or validating user input in checkout flows. Prefer this over a full EU VAT registry lookup when you only need to confirm the string matches the DE-UStID pattern (DE + 9 digits) without a live VIES database query.

## Known failure modes

- Empty or missing 'text' field returns error
- Non-string input may cause parsing failure
- Ambiguous or truncated VAT numbers may yield uncertain results
- Service may return generic 'processed' result without detailed error messaging due to minimal schema

## 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 submitted text is a validly formatted German VAT ID, with a 'result' field (e.g. 'processed') and a 'status' field (e.g. 'success' or error indicator). Does not perform live registry lookup — format validation only.

## 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/kihustle-de-ustid-format-check-06107ad3/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)
