# AptiBuild AI Occupation Lookup

> AptiBuild AI Occupation Lookup is a paid API for AI agents from data.aptibuildai.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Looks up occupation employment and wage statistics by job title keyword, with optional state-level filtering

## Facts

- Endpoint: GET https://data.aptibuildai.com/data/occupations/lookup
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aptibuild-ai-occupation-lookup-b868f2b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_odR3djJa-gJr6AOX71Mz7

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 aptibuild-ai-occupation-lookup-b868f2b5
```

Example prompt: What's the median annual salary and total employment for software developers in Texas?

## When to prefer this

Use this endpoint when you need structured, authoritative occupation wage and employment statistics keyed by job title — especially when you want to filter by state. Prefer this over general web search when you need machine-readable labor market data (median wages, employment counts) tied to standardized SOC occupation codes.

## Known failure modes

- No results returned if the title keyword doesn't match any known occupation titles
- State filter may return empty results for rare occupations with insufficient sample sizes
- Ambiguous job title keywords may return too many loosely matched occupations
- Missing or malformed 'title' parameter results in a validation error since it is required

## How this service works

Discover what to build based on your unique skills and hobbies. AptiBuild AI generates personalized app and business ideas matched to your experience. Free to try.

## Output

Returns an array of matching occupations with their SOC occupation code, title, geographic area, total employment count, median annual wage, and median hourly wage, along with the query echo and data source attribution.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "title"
 ],
 "properties": {
  "state": {
   "type": "string",
   "description": "Optional state name to filter geographic data"
  },
  "title": {
   "type": "string",
   "description": "Occupation title keyword (e.g. 'registered nurse', 'software developer', 'accountant')"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer"
  },
  "query": {
   "type": "object"
  },
  "source": {
   "type": "string"
  },
  "occupations": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "tot_emp": {
      "type": "string"
     },
     "a_median": {
      "type": "string",
      "description": "Median annual wage (USD)"
     },
     "h_median": {
      "type": "string",
      "description": "Median hourly wage (USD)"
     },
     "occ_code": {
      "type": "string"
     },
     "occ_title": {
      "type": "string"
     },
     "area_title": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aptibuild-ai-occupation-lookup-b868f2b5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.aptibuildai.com](https://www.zero.xyz/host/data.aptibuildai.com/llms.txt)
