# Travel Entry Requirements Lookup

> Travel Entry Requirements Lookup is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns fused international entry requirements for a passport-destination pair, including visa rules, passport validity, US State Dept advisory level, and CDC health notices in one cited JSON response.

## Facts

- Endpoint: GET https://payai.agentstools.dev/travel/entry
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travel-entry-requirements-lookup-62b90be7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MQrEAimvudn3tfpTVyZyc

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-entry-requirements-lookup-62b90be7
```

Example prompt: What are the entry requirements for someone with a US passport traveling to Japan for tourism — including visa rules, how long my passport needs to be valid, any State Dept advisories, and CDC health notices?

## When to prefer this

Choose this endpoint when you need a single fused, cited summary of entry requirements combining visa rules, passport validity, safety advisories, and health notices for a specific passport-destination pair. Prefer it over querying State Dept or CDC separately when you want all entry-relevant signals in one call with derived document checklists. Not suitable for real-time immigration status checks or official legal advice.

## Known failure modes

- Unknown or misspelled country name/code returns an error or empty result
- Stale advisory data if State Dept or CDC sources are temporarily unavailable
- Visa rules may be outdated for countries with rapidly changing policies
- Does not cover sub-national entry restrictions or special border zones
- Not a substitute for official immigration advice; may lag real-time policy changes

## How this service works

International entry requirements for a passport and destination pair. Fuses the community visa requirement, a passport-validity rule, the US State Dept travel advisory level and summary, and current CDC travel-health notices into one cited JSON with derived documents and notes. Informational, not immigration advice.

## Output

A cited JSON object containing: the community-sourced visa requirement (e.g. visa-free, visa on arrival, e-visa, visa required), passport validity rule (e.g. minimum months of validity required), US State Department travel advisory level (1-4) and summary text, current CDC travel-health notices, plus derived document checklists and traveler notes. All sources are cited within the response.

## 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": [
      "passport_country",
      "destination"
     ],
     "properties": {
      "purpose": {
       "type": "string",
       "description": "Optional trip purpose, e.g. tourism"
      },
      "destination": {
       "type": "string",
       "description": "Destination country name, ISO2 or ISO3 code"
      },
      "passport_country": {
       "type": "string",
       "description": "Passport 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-entry-requirements-lookup-62b90be7/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)
