# Travel Advisory Lookup

> Travel Advisory Lookup 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 official travel advisory information for a destination country, including risk level, summary, and source link.

## Facts

- Endpoint: GET https://payai.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/travel-advisory-lookup-7f58e926
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4IM3-5FUtqglQzIPi6q3A

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 travel-advisory-lookup-7f58e926
```

Example prompt: What's the official travel advisory and risk level for Mexico right now?

## When to prefer this

Use this endpoint when you need quick, structured official travel advisory data for a specific country, including risk level and summary, without scraping government websites. Prefer this over a generic web search when you need machine-readable risk levels and structured metadata rather than raw HTML. Best for single-country lookups in real-time travel planning, risk assessment workflows, or corporate travel management.

## Known failure modes

- Unknown or misspelled destination name returns an error or empty result
- Unsupported country codes may not resolve correctly
- Advisory data may be stale if the upstream government source has not been recently indexed
- Rate limiting or payment failure for $0.01 USDC per call via x402 protocol

## How this service works

Provides paid travel advisory guidance and recommendations for trips.

## Output

Returns a structured object containing the destination's official risk level (e.g. exercise normal precautions, reconsider travel, do not travel), a human-readable advisory summary, a link to the official government source, and associated metadata such as last updated date and issuing authority.

## 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/travel-advisory-lookup-7f58e926/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)
