# BizIntel API – Talent Universities Lookup

> BizIntel API – Talent Universities 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).

Returns a list of universities associated with a given talent or domain context, including university name and domain, with confidence scoring.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/talent/universities
- 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-talent-universities-lookup-5451fd7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Bw8-TcVOrDs7vNgJL4G5

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-talent-universities-lookup-5451fd7e -d '<json body>'
```

Example prompt: What universities are associated with the talent at Google — give me the university names and their domains so I can understand where they recruit from.

## When to prefer this

Use this endpoint when you need to identify which universities are affiliated with a company's talent pool or workforce for recruiting intelligence, academic network mapping, or B2B enrichment. Prefer this over general web search when you need structured university-domain pairs with confidence scoring and a data freshness date.

## Known failure modes

- Unsupported query returns supported:false with low confidence
- Unknown company or talent context returns empty universities array
- Ambiguous input may return warnings array with clarification notes
- Network or worker timeout returns HTTP 5xx error
- Malformed POST body returns 4xx validation error

## How this service works

Queries official university names and domains from the public HipoLabs directory.

## Output

A JSON object containing an array of universities (each with name and domain), a supported flag, a confidence level (e.g. 'high'), a data_as_of date, any warnings, and a disclaimer. Example: Stanford University with domain stanford.edu.

## 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": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "University name filter (e.g. Stanford)"
      },
      "country": {
       "type": "string",
       "description": "Country name filter (e.g. United States)"
      }
     }
    },
    "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": {
   "universities": [
    {
     "name": "Stanford University",
     "domain": "stanford.edu"
    }
   ]
  },
  "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-talent-universities-lookup-5451fd7e/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)
