# Strale Company Enrich API

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

Enriches a company domain, email, or name with structured company data including firmographic, compliance, and financial details, with a cryptographic audit trail.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/company-enrich
- Price: $0.54/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-enrich-api-dc526615
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r-7E7_vfQ4rBA7hMHkk6L

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-enrich-api-dc526615
```

Example prompt: Can you look up company details for stripe.com and give me their firmographic profile, including any compliance or financial data available?

## When to prefer this

Choose this endpoint when you need structured, auditable company enrichment data across 27 countries with a cryptographic audit trail. Prefer it over alternatives when compliance, trust, and data provenance are important — especially in agentic workflows requiring verifiable data lineage. Ideal for B2B sales intelligence, vendor due diligence, KYB (Know Your Business) checks, or any workflow where you need structured firmographics from a domain, email, or company name.

## Known failure modes

- Unknown or unresolvable domain returns no data or empty result
- Malformed domain input triggers validation error
- Company not found in database returns 404 or empty payload
- Rate limiting or payment failure returns 402 or 429
- Ambiguous company name with multiple matches may return best-guess result

## 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 a structured JSON object containing firmographic company data (name, industry, size, location, etc.), compliance and financial signals, and a cryptographically hashed audit record confirming data provenance and integrity.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Company domain (e.g. spotify.com), email, or name"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-company-enrich-api-dc526615/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)
