# Travel Visa Requirement Lookup

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

Returns the visa requirement (visa free, visa on arrival, e-visa, ETA, or visa required) for a given passport and destination country pair, including visa-free day allowance where applicable.

## Facts

- Endpoint: GET https://payai.agentstools.dev/travel/visa
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travel-visa-requirement-lookup-ded29ff1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cQoRrI_RHi7RUUGZUvVwo

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-visa-requirement-lookup-ded29ff1
```

Example prompt: Do I need a visa to travel to Japan if I have a US passport, and if so how many days am I allowed to stay?

## When to prefer this

Use this endpoint when you need a quick, machine-readable lookup of visa requirements for a passport-destination pair, especially in travel planning workflows, itinerary builders, or eligibility checks. It is well-suited for agents needing programmatic access to visa classification without scraping embassy websites. Prefer this over general web search when you need a structured, normalized output (visa type + allowed days). Do not rely on it for legally binding travel decisions — always advise users to verify with the relevant embassy.

## Known failure modes

- Unsupported or unrecognized country name/code returns an error or empty result
- Data may be outdated relative to current embassy policy — community-sourced matrix is not real-time
- Edge cases like dual citizenship, specific passport validity requirements, or stateless persons are not handled
- Some country pairs may have incomplete or missing data in the community matrix

## How this service works

Visa requirement for a passport and destination pair from a community visa-matrix. Returns the normalized requirement such as visa free, visa on arrival, e-visa, electronic travel authorization or visa required, with the visa-free day allowance where applicable. Indicative, not authoritative. Verify with the embassy.

## Output

Returns a normalized visa requirement classification (e.g. visa free, visa on arrival, e-visa, electronic travel authorization, or visa required) along with the number of visa-free days allowed where applicable, sourced from a community visa-matrix. Results are indicative and not authoritative.

## 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": {
      "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-visa-requirement-lookup-ded29ff1/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)
