# US State Department Travel Advisory Lookup

> US State Department Travel Advisory Lookup 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 the current US State Department travel advisory level, label, summary, and last-updated date for a given destination country.

## Facts

- Endpoint: GET https://api.agentstools.dev/travel/advisory
- 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/us-state-department-travel-advisory-lookup-eceffb11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fdt4VjovSvyggKM8vM8xz

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 us-state-department-travel-advisory-lookup-eceffb11
```

Example prompt: What's the current US State Department travel advisory level and summary for Mexico — like the official level number, its label, and what they say about it?

## When to prefer this

Use this endpoint when you need authoritative, live US government travel risk levels for a specific country — especially when building travel planning tools, risk dashboards, or compliance checks that require official State Department advisory data normalized into a consistent JSON schema.

## Known failure modes

- Unknown or misspelled destination returns an error or empty result
- Country not covered by State Department advisories returns no data
- Temporary upstream State Department data unavailability causes fetch failure
- Invalid ISO code that doesn't map to a known country returns an error

## How this service works

US State Department travel advisory for a destination country. Returns the advisory level one to four, its label, the summary and the last-updated date, normalized to one cited JSON. Authoritative and live. Informational, not travel advice.

## Output

A normalized JSON object containing the advisory level (integer 1–4), its label (e.g. 'Exercise Normal Precautions', 'Do Not Travel'), a plain-text summary of the advisory, and the date the advisory was last updated — all sourced live from the US State Department.

## 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/us-state-department-travel-advisory-lookup-eceffb11/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)
