# Strale Company Enrichment API

> Strale Company Enrichment 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-14, last successful call 2026-04-29).

Enriches company data by scraping a company's website given a domain, email, or company name, returning industry, employee count, HQ location, description, social links, and tech stack.

## Facts

- Endpoint: GET https://api.strale.io/x402/company-enrich
- Price: $0.54/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-04-29
- Success rate: 50% of calls made through Zero
- Activations on Zero: 3
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-5e429c95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2RIbekGV5CeOCPj2-6YQb

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 api-strale-io-5e429c95
```

Example prompt: Can you pull up company details for spotify.com — I need their industry, employee count, HQ location, tech stack, and social links?

## When to prefer this

Use this endpoint when you need to enrich a company record from just a domain, email, or name — especially for sales prospecting, lead qualification, or CRM enrichment where you need industry, size, location, tech stack, and social presence in a single call. Prefer this over manual research or generic search when you want structured, machine-readable company metadata.

## Known failure modes

- Domain not found or inaccessible — returns empty or partial result
- Company name is ambiguous — may match wrong company
- Website blocks scraping — limited or no data returned
- Invalid domain format — schema validation error
- Rate limiting or payment failure — HTTP 402 or 429 error

## How this service works

Enrich company data from a domain, email, or company name. Scrapes the company website to extract: industry, employee estimate, HQ location, description, social links, tech stack.

## Output

Returns structured company profile including industry classification, estimated employee count, headquarters location, company description, social media links, and detected tech stack scraped from the company's website.

## Example request

```json
{
 "domain": "spotify.com"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "domain"
 ],
 "properties": {
  "domain": {
   "type": "string",
   "description": "Company domain (e.g. spotify.com), email, or name"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "industry": {
  "type": "string"
 },
 "tech_stack": {
  "type": "array"
 },
 "description": {
  "type": "string"
 },
 "hq_location": {
  "type": "string"
 },
 "company_name": {
  "type": "string"
 },
 "employee_estimate": {
  "type": "string"
 }
}
```

## More

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