Visa and entry requirements for a passport/destination pair: requirement type, visa-free d
Visa and entry requirements for a passport/destination pair: requirement type, visa-free days, documents, fees, processing time, transit rules, passport validity, overstay penalties and embassy contacts. Answers travel compliance and passport restriction checks, in 15 languages, with the official source and verification date where that pair has been verified.
30000 (raw units)
price
7
calls / 30d
2
unique payers
2026-08-30
updated
Provider
visa.orizn.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xf21dF47097D3F49974704Cd4f0DFc6A52Fa2b334",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"destination": "JPN",
"lang": "en",
"passport": "FRA"
},
"type": "http"
},
"output": {
"example": {
"data": {
"destination": "JPN",
"passport": "FRA",
"requirement": "visa_free",
"visa_free_days": 90
},
"meta": {
"api_version": "1.0",
"lang": "en",
"paid_via": "x402"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"destination": {
"description": "Destination country, ISO 3166-1 alpha-3",
"type": "string"
},
"lang": {
"description": "Response language, ISO 639-1. 15 supported, defaults to en.",
"type": "string"
},
"passport": {
"description": "Passport country, ISO 3166-1 alpha-3",
"type": "string"
}
},
"required": [
"passport",
"destination"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://visa.orizn.app/api/x402/visa" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://visa.orizn.app/api/x402/visa");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://visa.orizn.app/api/x402/visa")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8433.json, and this resource appears in /discovery/resources and /discovery/search.