# Taiwan NHI Healthcare Navigator

> Taiwan NHI Healthcare Navigator is a paid API for AI agents from tariffmonkee.com, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Returns NHI-contracted healthcare institutions by county and specialty, current copay amounts by facility tier and referral status, and NHI eligibility rules including the 6-month rule and its exceptions.

## Facts

- Endpoint: POST https://tariffmonkee.com/paid/healthcare-navigator
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/taiwan-nhi-healthcare-navigator-b70882d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2QAZze6sVQCWTPXC70WPZ

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 taiwan-nhi-healthcare-navigator-b70882d4 -d '<json body>'
```

Example prompt: I just moved to Taipei for work and need to see a cardiologist — can you tell me which NHI-contracted hospitals in Taipei offer cardiology, what my copay would be if I go without a referral, and whether I qualify for NHI coverage right away given I'm employed?

## When to prefer this

Choose this endpoint when you need authoritative Taiwan NHI-specific information: institution lookup by county/specialty, copay cost navigation by facility tier, or eligibility assessment including the 6-month rule and employment exceptions. Prefer this over generic web search when you need structured, up-to-date NHI data without having to parse government websites. Not suitable for medical diagnosis, doctor recommendations, or English-language capability checks at clinics.

## Known failure modes

- Invalid or unrecognized county name returns empty institution list
- Unsupported specialty query may yield no results
- Missing required body fields returns validation error
- Ambiguous eligibility scenarios may return general guidance rather than a definitive answer
- Payment failure via x402 protocol results in 402 response before endpoint executes

## How this service works

Taiwan healthcare navigator: NHI-contracted institutions by county/specialty, current copay by facility tier and referral status, and NHI eligibility (the 6-month rule and its no-wait exceptions for employed and professional-talent-act cases). Routes to care and explains cost, not medical advice: no diagnosis, no doctor recommendation. English-language capability at a clinic is not an official NHIA field and is never reported here.

## Output

Returns a structured response containing NHI-contracted healthcare institutions filtered by county and specialty, copay amounts broken down by facility tier (clinic, regional hospital, medical center) and referral status, and NHI eligibility guidance covering the 6-month rule and exceptions for employed workers and Professional Innovation Act holders. Does not provide medical advice, diagnoses, or doctor recommendations.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/taiwan-nhi-healthcare-navigator-b70882d4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tariffmonkee.com](https://www.zero.xyz/host/tariffmonkee.com/llms.txt)
