# CDC Travel Health Notices by Destination

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

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

## Facts

- Endpoint: GET https://api.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-by-destination-48680bc7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iiJAv1jaKcRK9ax1e8Eo0

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-by-destination-48680bc7
```

Example prompt: What are the current CDC travel health notices and outbreak alerts for Thailand? I want the notice levels and any global health warnings that apply.

## When to prefer this

Use this endpoint when you need authoritative, live CDC travel health and outbreak notices for a specific destination country. Prefer this over generic travel advisory services when the user specifically needs CDC-sourced public health data, disease outbreak notices, or official US government health alert levels for international travel.

## Known failure modes

- Unknown or misspelled country name returns empty results or a 400 error
- Country with no active notices returns an empty notices array
- Network timeout or CDC data source unavailability may result in a 5xx error
- Invalid ISO code that doesn't map to a recognized country returns an error or empty result

## 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 JSON object containing an array of health notices for the specified destination country, each with a level (e.g., Watch, Alert, Warning), a title describing the health concern, and a link to the official CDC page. Also includes any active global-scope notices that apply to all travelers.

## 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-by-destination-48680bc7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
