# Strale Insolvency Check

> Strale Insolvency Check is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0216/call, status unknown (last checked 2026-09-15).

Check whether a company is insolvent or has filed for bankruptcy across 27 countries using company name and country code

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/insolvency-check
- Price: $0.0216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-insolvency-check-8a038090
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nyIvVMgGnLr082P8ZWkZM

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 strale-insolvency-check-8a038090
```

Example prompt: Can you check if Wirecard AG in Germany (DE) is currently insolvent or has any bankruptcy filings on record?

## When to prefer this

Choose this endpoint when you need a fast, auditable insolvency and bankruptcy status check across international jurisdictions — especially when you require a cryptographic audit trail for compliance purposes. Preferred over manual registry searches when automating due diligence workflows, screening suppliers, or assessing credit risk for companies in any of the 27 supported countries.

## Known failure modes

- Company not found in the registry for the given country — returns no result or not-found status
- Invalid or unsupported ISO country code — returns validation error
- Ambiguous company name with multiple matches — may require company_number to disambiguate
- Data unavailable for the requested country or jurisdiction
- Network or upstream registry timeout resulting in a 5xx error

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns the insolvency status of the queried company including whether it is currently insolvent, has active bankruptcy or administration proceedings, relevant filing dates, and an audit record with a cryptographic chain hash for tamper-evident verification.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "queryParams": {
     "type": "object",
     "required": [
      "company_name",
      "country_code"
     ],
     "properties": {
      "company_name": {
       "type": "string",
       "description": "Company name"
      },
      "country_code": {
       "type": "string",
       "description": "Country code (ISO 2-letter)"
      },
      "company_number": {
       "type": "string",
       "description": "Company registration number if known (optional)"
      }
     }
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-insolvency-check-8a038090/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
