# Strale Company Industry Classifier

> Strale Company Industry Classifier 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-14).

Classify a company into its industry category based on its name and/or description

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/company-industry-classify
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-company-industry-classifier-f8d03539
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c4PRVf1mvcVLLM_r8B40o

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-industry-classifier-f8d03539
```

Example prompt: Can you classify what industry Acme Logistics belongs to? Their business focuses on last-mile parcel delivery and supply chain management.

## When to prefer this

Choose this endpoint when you need a fast, auditable, per-call industry classification for individual companies using name and/or description text — especially useful in data enrichment pipelines, CRM tagging, or due diligence workflows where you need a trust-layer audit trail per call. Prefer it over bulk classification services when you need cryptographic audit records and pay-per-use pricing without a subscription.

## Known failure modes

- Missing both company_name and description — the API may return an error or low-confidence result
- Ambiguous company descriptions that span multiple industries may result in a broad or uncertain classification
- Unknown or very obscure companies with no description provided may return no result
- Rate limiting or payment failure via x402 micropayment protocol

## How this service works

Classify a company's industry using standard codes. Given a company name, description, or website URL, returns SIC, NAICS, and NACE codes with confidence levels.

## Output

Returns an industry classification label (and likely a sector or category code) for the given company, derived from its name and/or business description. Each call also returns a cryptographic audit record with chain hashing for traceability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "description": {
   "type": "string",
   "description": "Company description or business activity"
  },
  "company_name": {
   "type": "string",
   "description": "Company name"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "sector": {
  "type": "string"
 },
 "confidence": {
  "type": "string"
 },
 "company_name": {
  "type": "string"
 },
 "classifications": {
  "type": "array"
 },
 "primary_industry": {
  "type": "string"
 }
}
```

## More

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