Developers / Golden Visa API

Golden Visa API

A free, keyless Golden Visa API. Query residency-by-investment programs for roughly 70 jurisdictions as clean JSON: investment thresholds by route, what residency you get, physical-presence rules, and the path to permanent residence and citizenship. No signup, no key, no paywall.

The API is completely free to use, including in commercial products. The only ask is a visible link back to solooutpost.com. Every response includes an attribution field, and the dataset carries a verified_date so you always know how current it is.

Endpoints

Base URL: https://solooutpost.com/api

GET/golden-visastry it →
Every golden-visa program, as one JSON list.
GET/golden-visas/{slug}try /golden-visas/portugal →
One program by country slug (e.g. portugal, uae, greece).

Example

Fetch a single program from the terminal, no key needed:

curl "https://solooutpost.com/api/golden-visas/portugal"

Response:

{
  "slug": "portugal",
  "country": "Portugal",
  "iso": "PT",
  "program_name": "Residency Permit for Investment Activity (ARI / Golden Visa)",
  "type": "residency_by_investment",
  "status": "active",
  "status_note": "Real-estate route removed Oct 2023; funds/business/research/donation remain.",
  "investment_options": [
    { "route": "Qualifying investment fund", "min_usd": 550000, "notes": "EUR 500k" },
    { "route": "Cultural donation", "min_usd": 220000, "notes": "EUR 200k" }
  ],
  "residency_granted": "2-year renewable permit",
  "physical_presence": "7 days/year average",
  "path_to_citizenship": "~10 years (extended 2026)",
  "confidence": "high",
  "verified_date": "2026-07-08"
}

List every program and, say, keep only the active ones under $300k with a little JavaScript:

const r = await fetch("https://solooutpost.com/api/golden-visas");
const { programs } = await r.json();
const cheapActive = programs.filter(p =>
  p.status === "active" &&
  Math.min(...p.investment_options.map(o => o.min_usd || Infinity)) <= 300000
);

Example use cases

FAQ

Is the Golden Visa API really free?

Yes. It is free and keyless. There is no signup, no API key and no paywall. If you use the data, please credit SoloOutpost with a link back to solooutpost.com.

How many programs does it cover?

Around 70 jurisdictions worldwide, from the European golden visas (Portugal, Greece, Italy, Malta) to the Gulf, Asia, the Americas, Africa and the Caribbean, including notable closed programs (Spain, Ireland, the UK) marked with their status.

What does each record contain?

The program name and authority, current status (active, closed or terminated), every investment route with its minimum in USD, what residency it grants, physical-presence rules, and the path to permanent residence and citizenship.

How current is the data?

Each record carries a verified date. We track status changes closely, for example Spain terminated its golden visa in April 2025 and Portugal removed its real-estate route in October 2023. Some newer or thinly documented programs are flagged with a lower confidence value.

Can I use it commercially?

Yes. Use it in commercial products. The only ask is a visible link back to solooutpost.com. Every response also includes an attribution field.

How is this different from the Citizenship by Investment API?

Golden visas grant residency (a permit), not a passport. If you want programs that grant citizenship directly, use the Citizenship by Investment API instead.

Is this legal or immigration advice?

No. Programs change often and many exclude specific nationalities. Treat the API as a current starting point for filtering and comparison, not legal advice.

Our data sources

SoloOutpost runs three datasets. Every figure is sourced from authoritative material, prioritising official government publications. Here is the full source list across all of them.

Golden visas & citizenship by investment

Country tax & business profiles (Directory)

Mobility

Programs change often and many exclude specific nationalities. Treat the API as a current starting point for filtering and comparison, not legal advice. See how we score countries, or browse the golden visas dataset on the site.

Related: Citizenship by Investment API · Mobility API · all developer docs.