# Visa Requirement Lookup by Passport and Destination

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

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

## Facts

- Endpoint: GET https://api.agentstools.dev/travel/visa
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/visa-requirement-lookup-by-passport-and-destination-e6e49df5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VBg4P9Zif0N2-PPM4PV84

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 visa-requirement-lookup-by-passport-and-destination-e6e49df5
```

Example prompt: Do I need a visa to travel from the US (passport country US) to India (destination IN), and if it's visa-free, how many days am I allowed to stay?

## When to prefer this

Use this endpoint when you need a quick, normalized indicator of visa requirements for a specific passport and destination country pair, especially in travel planning workflows where a fast indicative answer is sufficient before advising embassy verification. Prefer this over manual lookups or scraping embassy sites for machine-readable, structured responses.

## Known failure modes

- Unknown or misspelled country name or code returns an error or no result
- Community visa matrix may be outdated for recent policy changes
- Some passport-destination pairs may not be covered in the community dataset
- Ambiguous country input (e.g. matching multiple entries) may return unexpected results

## 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

A normalized visa requirement string (e.g. 'visa free', 'visa on arrival', 'e-visa', 'electronic travel authorization', 'visa required') and, where applicable, the number of visa-free days allowed for the passport-destination pair. The result is indicative and sourced from a community visa matrix — embassy verification is recommended.

## 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/visa-requirement-lookup-by-passport-and-destination-e6e49df5/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)
