v1

latestOpenAPI 3.0.3Commercial — see Terms2026-07-13274891.4 KB
Passport scoring

Compare two passports (public)

Side-by-side comparison of two passports — individual scores, set difference of destinations they unlock, and a normalised combined score (max 1000). Powers dual-citizenship calculators.

get/api/v1/visa/score/compare

Query parameters

passport1string required

ISO 3166-1 alpha-3 country code.

Example:FRA
passport2string required

ISO 3166-1 alpha-3 country code.

Example:FRA

Response

Comparison result.

share_textstring

Example response

{
  "passport1": {
    "code": "FRA"
  },
  "passport2": {
    "code": "FRA"
  },
  "combined": {
    "score": 988,
    "total_accessible": 197,
    "only_passport1": [
      "FRA"
    ],
    "only_passport2": [
      "FRA"
    ],
    "both": [
      "FRA"
    ],
    "neither": [
      "FRA"
    ]
  }
}