# BizIntel API – Job Taxonomy Lookup

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

Maps a job title or occupation description to its official O*NET occupational classification code and standardized title

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/talent/job-taxonomy
- 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-job-taxonomy-lookup-ef435af5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7WqlYce0vxGzn1WHYWt4R

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-job-taxonomy-lookup-ef435af5 -d '<json body>'
```

Example prompt: What is the official O*NET occupational code and standardized title for the job title 'Machine Learning Engineer'?

## When to prefer this

Use this endpoint when you need to map free-text job titles to official O*NET occupational codes for workforce analytics, HR systems, compliance reporting, labor market research, or resume parsing pipelines. Prefer it over generic LLM-based classification when you need a verifiable, citable O*NET code with a confidence signal rather than an approximate categorization.

## Known failure modes

- Ambiguous or highly niche job title may return lower confidence score or unsupported flag
- Very informal or slang role names may not map cleanly to a taxonomy entry
- Outdated O*NET version if data_as_of lags behind the latest SOC revision
- No match found returns supported:false with empty or null onet_code
- Payment failure via x402/USDC on Base prevents the call from executing

## How this service works

Resolves job titles to O*NET standard codes and role descriptions.

## Output

Returns a JSON object with the standardized O*NET occupational title (e.g. 'Software Developers'), the O*NET code (e.g. '15-1252.00'), a confidence level (high/medium/low), a supported boolean indicating whether the taxonomy lookup succeeded, a data_as_of date for the reference data vintage, any warnings, and a disclaimer about informational use 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": [
      "title"
     ],
     "properties": {
      "title": {
       "type": "string",
       "description": "Job title (e.g. Software Quality Assurance)"
      }
     }
    },
    "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": {
   "title": "Software Developers",
   "onet_code": "15-1252.00"
  },
  "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-job-taxonomy-lookup-ef435af5/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)
