# BizIntel Talent Jobs Search

> BizIntel Talent Jobs Search 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-13).

Search for job listings by keyword and location, returning job titles and salary data for talent intelligence.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/talent/jobs
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-talent-jobs-search-9da1afac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_12pXhMn6nNm0z7LKCTAWd

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-talent-jobs-search-9da1afac -d '<json body>'
```

Example prompt: Search for senior Rust engineer job listings in the US and tell me the maximum salaries you find.

## When to prefer this

Use this endpoint when an agent needs programmatic access to job market data including salary ranges for specific roles and locations, without requiring an API key — ideal for pay-per-call talent intelligence workflows where the agent pays per query via USDC on Base. Prefer this over scraping or manual job board searches when structured salary intelligence is needed quickly at low cost.

## Known failure modes

- Missing required 'keyword' field returns a validation error
- Unknown or unsupported location may reduce confidence or return fewer results
- Payment failure via x402/USDC results in 402 Payment Required response
- Overly broad keywords may return noisy or loosely relevant results
- Data may be dated — freshness is indicated by 'data_as_of' field

## How this service works

Searches active corporate and developer openings matching keywords and location.

## Output

Returns a list of job postings matching the keyword and location, each with a job title and maximum salary figure, along with a confidence level, data freshness date, and a disclaimer noting the information is for informational purposes 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": [
      "keyword"
     ],
     "properties": {
      "keyword": {
       "type": "string",
       "description": "Job title keywords (e.g. software engineer)"
      },
      "location": {
       "type": "string",
       "default": "us",
       "description": "City or country"
      }
     }
    },
    "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": {
   "jobs": [
    {
     "title": "Senior Rust Engineer",
     "salary_max": 180000
    }
   ]
  },
  "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-talent-jobs-search-9da1afac/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)
