# Travel Entry Requirements by Passport and Destination

> Travel Entry Requirements by Passport and Destination is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns fused international entry requirements — visa rules, passport validity, US State Dept advisory level, and CDC health notices — for a given passport/destination country pair in a single cited JSON.

## Facts

- Endpoint: GET https://api.agentstools.dev/travel/entry
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travel-entry-requirements-by-passport-and-destination-dd055862
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dkLo360yPG6d0fDqWTRCe

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-by-passport-and-destination-dd055862
```

Example prompt: What are the entry requirements for someone traveling to Japan with a US passport for tourism — do they need a visa, how long must the passport be valid, and are there any current State Dept or CDC advisories?

## When to prefer this

Choose this endpoint when you need a single unified answer covering visa requirements, passport validity, travel safety, AND health notices for a specific passport/destination pair — rather than calling four separate government APIs. Especially useful for travel planning assistants, itinerary builders, or compliance checks that need a cited, authoritative snapshot of entry requirements in one call.

## Known failure modes

- Unknown or unrecognized country code/name returns a 4xx error with a message indicating the invalid input
- No visa data available for an obscure country pair returns partial data with null fields
- State Dept or CDC upstream data unavailable may result in missing advisory or health notice fields
- Rate limiting or payment failure returns a 402 or 429 response

## 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, required), a passport validity rule, the US State Department advisory level (1–4) and summary text, current CDC travel health notices for the destination, a list of required/recommended entry documents, and any derived notes — all with source citations. The endpoint is informational and not immigration advice.

## 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-by-passport-and-destination-dd055862/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)
