# BizIntel API – SIC Code Lookup

> BizIntel API – SIC Code Lookup is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Resolves a 4-digit SIC code to its official industry classification, office designation, and sector label

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/company/sic-code
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-sic-code-lookup-c5322d08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6jre9IzImCe9cH83p0_by

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 bizintel-api-sic-code-lookup-c5322d08 -d '<json body>'
```

Example prompt: What industry and government office does SIC code 7372 correspond to?

## When to prefer this

Use this endpoint when you need a fast, pay-per-call resolution of a known SIC code to its official industry classification without setting up an API key. Ideal for enriching corporate records, validating business filings, or classifying companies by sector in automated agent workflows. Prefer this over manual lookup tables when freshness and confidence scoring matter.

## Known failure modes

- Invalid or non-existent SIC code returns supported:false or low confidence
- Malformed 4-digit input (e.g. letters, fewer than 4 digits) may return a validation error
- Obscure or deprecated SIC codes may return warnings or reduced confidence
- Payment failure via x402/USDC halts the request before processing

## How this service works

Resolves SEC Standard Industrial Classification (SIC) details and category descriptions.

## Output

Returns the resolved industry label (e.g. 'Services-Prepackaged Software'), the associated government office (e.g. 'Office of Technology'), the original SIC code echoed back, a confidence level ('high'/'medium'/'low'), a data currency date, a 'supported' boolean, any warnings, and a legal disclaimer noting results are informational only.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "sic"
     ],
     "properties": {
      "sic": {
       "type": "string",
       "description": "4-digit SIC code"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "sic": "7372",
   "office": "Office of Technology",
   "industry": "Services-Prepackaged Software"
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-sic-code-lookup-c5322d08/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
