# Strale Company ID Detect

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

Identifies and looks up a company by its registration number, returning structured company data with a cryptographic audit trail.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/company-id-detect
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-company-id-detect-91aed63d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E5b9v3K5o6lR7NzAu8bEb

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-company-id-detect-91aed63d
```

Example prompt: Can you look up company registration number 12345678 and tell me what company it belongs to and where it's registered?

## When to prefer this

Choose this endpoint when you need to programmatically resolve a company registration number to verified company identity data with a tamper-evident audit trail — particularly useful in KYB, compliance, due diligence, or invoice verification workflows where auditability matters. Prefer this over generic web search when you need structured, machine-readable output with cryptographic provenance.

## Known failure modes

- Invalid or malformed company registration number returns an error or empty result
- Registration number not found in any supported registry returns a not-found response
- Unsupported country or jurisdiction may return no data
- Rate limiting or payment failure results in 402 or 429 error
- Ambiguous IDs shared across multiple jurisdictions may require additional context

## How this service works

Identify the type and country of a company registration number. Detects Swedish org numbers, Finnish business IDs, German HRB numbers, LEIs, DUNS, and 20+ other formats. Pure algorithmic.

## Output

Returns structured JSON with the identified company's official name, registration jurisdiction, registration status, and related corporate details, plus a cryptographic audit record with chain hashing for provenance verification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Company registration number to identify"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "input": {
  "type": "string"
 },
 "matches": {
  "type": "array"
 },
 "message": {
  "type": "string"
 },
 "detected": {
  "type": "boolean"
 },
 "best_match": {
  "type": "object"
 },
 "all_matches": {
  "type": "array"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-company-id-detect-91aed63d/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)
