# BizIntel API – NAICS Code Lookup

> BizIntel API – NAICS 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).

Returns the official NAICS title and classification metadata for a given 5 or 6-digit NAICS industry code

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/company/naics-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-naics-code-lookup-dd4dc1c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VAkReUnfB2U3C_cIR2JRp

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-naics-code-lookup-dd4dc1c8 -d '<json body>'
```

Example prompt: What is the official industry title for NAICS code 511210?

## When to prefer this

Use this endpoint when you have a NAICS code and need to resolve it to a human-readable industry title — particularly in B2B onboarding, regulatory filings, market research tagging, or corporate data enrichment workflows. It is pay-per-call with no API key required, making it ideal for low-volume or on-demand agent tasks. Prefer this over a static lookup table when you need data-vintage assurance and confidence scoring.

## Known failure modes

- Invalid or non-existent NAICS code returns supported:false
- 4-digit or 7-digit codes outside the accepted 5–6 digit range may fail validation
- Ambiguous or partially matched codes may return a lower confidence score
- Payment failure via x402/USDC will block the request before processing
- Network timeouts on the Cloudflare Workers edge in rare cases

## How this service works

Resolves North American Industry Classification System (NAICS) industry titles.

## Output

Returns a JSON object with the matched NAICS code, its official industry title (e.g. 'Software Publishers'), a supported flag, a confidence level ('high'/'medium'/'low'), the data vintage date, and any warnings or disclaimers about informational use only.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "required": [
      "naics"
     ],
     "properties": {
      "naics": {
       "type": "string",
       "description": "5 or 6-digit NAICS code"
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "naics": "511210",
   "title": "Software Publishers"
  },
  "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-naics-code-lookup-dd4dc1c8/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)
