# BizIntel Skills Match

> BizIntel Skills Match 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).

Matches a candidate's skills against a job's required skills and returns a compatibility score with a list of missing skills.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/talent/skills-match
- 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-skills-match-499367e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I63iRSQ7ejeQsuvW2RkV5

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-skills-match-499367e2 -d '<json body>'
```

Example prompt: Can you score how well this candidate fits the role? They have Python, React, and PostgreSQL, and the job requires Python, React, Node.js, and PostgreSQL — tell me the match score and what skills they're missing.

## When to prefer this

Use this endpoint when you need a fast, pay-per-call skills gap analysis without setting up an API key or subscription — ideal for AI agents doing lightweight candidate screening or job-fit scoring using USDC micropayments on Base.

## Known failure modes

- Missing or malformed skills arrays may result in a low or zero score with warnings
- Unsupported skill formats or very niche technologies may reduce confidence or set supported=false
- Payment failure over x402/USDC will block the call entirely
- Empty input lists may return a 0 score with no meaningful output

## How this service works

Audits lists of candidate skills against role requirements to score qualification parity.

## Output

Returns a JSON object with a numeric match score (e.g. 50 out of 100), a list of missing skills the candidate lacks, a confidence level (e.g. 'high'), a 'supported' boolean indicating whether the comparison was feasible, data freshness date, and any warnings or disclaimers.

## 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": [
      "candidate_skills",
      "required_skills"
     ],
     "properties": {
      "required_skills": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "candidate_skills": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     }
    },
    "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": {
   "score": 50,
   "missing": [
    "Node"
   ]
  },
  "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-skills-match-499367e2/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)
