# Interzoid Get Industry Codes API

> Interzoid Get Industry Codes API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Classifies a company name into industry codes (SIC, NAICS), sector, subsector, and primary industry with a confidence score using AI.

## Facts

- Endpoint: GET https://api.interzoid.com/getindustrycodes
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-industry-codes-api-5f1c0977
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CNIKDkMW1CDWGU2wHbqKX

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 interzoid-get-industry-codes-api-5f1c0977
```

Example prompt: What industry is Oracle Corporation in? Give me its SIC code, NAICS code, sector, and a confidence score on the classification.

## When to prefer this

Use this endpoint when you need to append standardized SIC or NAICS industry codes to a company record, enrich CRM/ERP/MDM data with industry classification, or segment companies by sector and subsector for analytics. Prefer this over manual lookup tables when dealing with diverse or large company lists that require AI-assisted classification with confidence scoring.

## Known failure modes

- Company name not recognized — returns low confidence or empty codes
- Ambiguous company name matching multiple industries — lower confidence score
- Invalid or missing 'lookup' query parameter — returns error response
- API credits exhausted — returns error with Credits field at 0
- Uncommon or newly formed company with no training data — classification may be generic

## How this service works

Identify and categorize a company's primary industry classification with standardized NAICS and SIC codes, sector and subsector details, business activity description, and a confidence score.

## Output

Returns the company name, SIC code, NAICS code, primary industry label, sector, subsector, a plain-English industry description, and a confidence score (e.g. High/Medium/Low) indicating classification certainty.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "Apple Inc"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Company name to classify"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Sector": "Technology",
  "Credits": "0",
  "SICCode": "7371",
  "NAICSCode": "541511",
  "Subsector": "Software",
  "CompanyName": "Oracle Corporation",
  "ConfidenceScore": "High",
  "PrimaryIndustry": "Computer Programming Services",
  "IndustryDescription": "Provider of enterprise software, cloud services, database management systems, and computer hardware."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-industry-codes-api-5f1c0977/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
