# SOC Occupation Title Resolver

> SOC Occupation Title Resolver is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Resolves a free-text job title to ranked SOC (Standard Occupational Classification) code candidates with match scores.

## Facts

- Endpoint: GET https://api.agentstools.dev/wage/occupations
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/soc-occupation-title-resolver-4fa98e71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vDk5DrFvk10VsbOQInv_d

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 soc-occupation-title-resolver-4fa98e71
```

Example prompt: What are the top 5 SOC code matches for the job title 'machine learning engineer'?

## When to prefer this

Use this endpoint as the first step in a prevailing-wage workflow when you only have a job title and need to identify the correct SOC code before fetching wage data. Prefer this over general-purpose search when you specifically need official SOC classifications with match scores for HR, immigration (H-1B/PERM), or compensation benchmarking workflows.

## Known failure modes

- Missing required 'occupation' query parameter returns a 400 error
- Very obscure or misspelled job titles may return low-confidence matches or an empty candidate list
- Limit value outside 1-25 range is rejected with a validation error
- Payment failure (x402) blocks the request if USDC balance is insufficient

## How this service works

Resolve an occupation title to ranked SOC candidates, each with the SOC code, official title and a match score. The cheap first step before a prevailing-wage determination when only a job title is known.

## Output

A ranked list of SOC candidates, each containing the SOC code, official government occupation title, and a numeric match score indicating how well it aligns with the input job title. Returns up to the requested limit (default 10, max 25).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "occupation"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 25,
       "minimum": 1,
       "description": "Maximum candidates (default 10)"
      },
      "occupation": {
       "type": "string",
       "description": "Occupation title to resolve"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/soc-occupation-title-resolver-4fa98e71/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
