# CDC Travel Health Notices

> CDC Travel Health Notices is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns live US CDC outbreak and health notices for a destination country, including notice level, title, and link

## Facts

- Endpoint: GET https://payai.agentstools.dev/travel/health
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cdc-travel-health-notices-dcc47cd3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0jHAAlihkPU-cUSHDV0b4

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 cdc-travel-health-notices-dcc47cd3
```

Example prompt: What are the current CDC travel health notices for Thailand — any active outbreaks or alerts I should know about?

## When to prefer this

Use this endpoint when you need authoritative, live CDC-sourced travel health notices for a specific destination country. Prefer this over generic travel advisory APIs when health and outbreak information is specifically required, or when the CDC is the trusted source needed. Best for travel planning agents, health monitoring workflows, or itinerary enrichment pipelines.

## Known failure modes

- Unknown or misspelled destination country returns an error or empty notice list
- Country with no active notices returns an empty array
- CDC source temporarily unavailable may cause stale or failed responses
- Invalid ISO code format may not resolve to a country

## How this service works

US CDC travel-health notices for a destination country. Returns the current outbreak and health notices for that country plus any global-scope notices, each with its level, title and link. Authoritative and live. Not medical advice.

## Output

A list of current CDC travel health notices for the requested country, including any country-specific outbreak notices and global-scope notices. Each notice includes its alert level (e.g. Watch, Alert), a title describing the health concern, and a link to the full CDC notice page. Data is live and authoritative from the CDC.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "destination"
     ],
     "properties": {
      "destination": {
       "type": "string",
       "description": "Destination country name, ISO2 or ISO3 code"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cdc-travel-health-notices-dcc47cd3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
