# BizIntel API – Visa Rules Lookup

> BizIntel API – Visa Rules 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 visa requirement details (visa class, whether a visa is required) for a traveler of a given nationality entering a specified destination country

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/talent/visa-rules
- 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-visa-rules-lookup-2609181d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Oz9MrQUNdXODlZWWjU06h

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-visa-rules-lookup-2609181d -d '<json body>'
```

Example prompt: Does someone with Indian nationality need a visa to work in the US, and if so what visa class applies?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call programmatic check on visa requirements between two countries without maintaining an API key or subscription. It is well-suited for HR tech agents screening international hires, relocation workflows, or travel pre-authorization checks. Prefer it over manually consulting embassy websites when you need machine-readable output with a confidence score and visa class label. For legal certainty, always follow up with a qualified immigration attorney as the response itself recommends.

## Known failure modes

- Invalid or unsupported 2-character country code returns an error or unsupported flag
- Uncommon origin-destination pairs may return low confidence or incomplete data
- Missing required fields (origin_country or destination_country) causes a 400-level validation error
- Payment failure via x402/USDC results in a 402 Payment Required response
- Data may be stale for rapidly changing visa regimes despite the data_as_of timestamp

## How this service works

Resolves business/work permit requirements and visa rules by nationality and destination country.

## Output

A JSON object indicating whether visa entry is supported/documented, the required visa class (e.g. H-1B, L-1, tourist visa), confidence level (high/medium/low), the data currency date, any warnings, and a legal disclaimer reminding the user this is informational only and not legal advice.

## 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": [
      "origin_country",
      "destination_country"
     ],
     "properties": {
      "origin_country": {
       "type": "string",
       "description": "2-character country code of nationality"
      },
      "destination_country": {
       "type": "string",
       "description": "2-character destination country code"
      }
     }
    },
    "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": {
   "required": true,
   "visa_class": "H-1B, L-1"
  },
  "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-visa-rules-lookup-2609181d/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)
