globenomad commited on
Commit
4b47a51
·
verified ·
1 Parent(s): f90945a

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. CHANGELOG.md +64 -0
  2. README.md +22 -8
  3. SCHEMA.md +26 -8
  4. data/visas.json +548 -5
CHANGELOG.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Changelog
2
+
3
+ Dated, breaking-change-first. If you hold an older copy of `data/visas.json`, read the entry for
4
+ the date you downloaded it and everything above.
5
+
6
+ ## 2026-08-27 — one row per programme (shape change)
7
+
8
+ **Baseline: the previous public file, pushed 2026-08-24, held 45 records, one per country.**
9
+ If you hold that file, two things changed for you, and one of them is breaking.
10
+
11
+ ### What changed
12
+
13
+ - **The file now carries one record per programme, not one per country.** 51 records across 46
14
+ countries, up from 45 records. Thailand appears four times — the DTV, the education visa, the
15
+ retirement route and the Non-B — where it previously appeared once. All six new records already existed on the
16
+ site and were being withheld by the export.
17
+ - **The Philippines appears for the first time**, with two records — the SRRV Classic and the
18
+ EO 86 digital nomad visa. It was absent from the 45-row file altogether, not merely reduced,
19
+ so a consumer counting countries goes from 45 to 46.
20
+ - **🔴 BREAKING — one `slug` value changed.** Thailand's row was `slug: "thailand"`. That row no
21
+ longer exists; the DTV is now `slug: "thailand-nomad"`, because its page moved to
22
+ `/visa/thailand-nomad` when `/visa/thailand` became a chooser listing all four Thai routes.
23
+ **Anyone who stored `"thailand"` as a key will not find it.** No other slug changed.
24
+ - **`slug` is now documented as the record key.** It always held the record's page address in
25
+ practice; SCHEMA.md previously described it as a country identifier, and the two agreed only
26
+ while every country held exactly one record.
27
+ - **`country_slug` added.** This is what `slug` was documented to be: the stable country key,
28
+ shared by every record for that country. **Group by this.**
29
+ - **`programme_name` added.** A short label for the route within its country, so a row can be
30
+ labelled without parsing the slug. Always populated, and equal to `visa_name` on countries
31
+ holding a single record.
32
+ - `record_count` and the `description` inside the file now say "programme" where they said
33
+ "country".
34
+
35
+ ### What did NOT change
36
+
37
+ - No field was renamed, repurposed or removed. Every field present before is present now with the
38
+ same meaning. `slug` kept its meaning too — what changed is one row's *value*, above, and the
39
+ documentation, which was corrected to describe what the field always emitted.
40
+ - `null` still means the government has not published that rule. It never means "no".
41
+ - The licence is unchanged: CC BY 4.0, attribution the only condition.
42
+ - Records are still sorted by `slug` ascending, so `git diff` on the file stays reviewable.
43
+
44
+ ### Migrating
45
+
46
+ - Grouping or joining by country: replace `slug` with `country_slug`.
47
+ - Expecting one row per country: you will now see several for countries running several routes.
48
+ There is no flag marking a "main" route — deliberately, because we do not rank a country's
49
+ programmes for you. To get one row per country, group by `country_slug` and pick by whatever
50
+ your use case actually cares about (lowest income, longest stay, open status).
51
+ - Using `slug` as a stable primary key: still unique, still the primary key — but see the
52
+ breaking note above. `"thailand"` is gone. If you cannot tolerate a key moving when a country
53
+ gains routes, key on `country_slug` and pick a row.
54
+
55
+ ### Why
56
+
57
+ The previous shape hid our deepest records. Thailand published as a single row while four fully
58
+ sourced records existed on the site, including a crackdown finding on the education visa and the
59
+ "the visa is not the work permit" correction on the Non-B — the kind of thing a dataset gets
60
+ cited for. A reference that under-reports what it holds argues against its own usefulness.
61
+
62
+ Recorded here rather than announced quietly because the 45-row file is already public and has
63
+ been since 2026-08-24, and a dataset that changes shape without saying so is precisely what this
64
+ one exists to be the opposite of.
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  license: cc-by-4.0
3
- pretty_name: Digital Nomad & Long-Stay Visa Dataset (45 countries, sourced & dated)
4
  language:
5
  - en
6
  size_categories:
@@ -17,8 +17,13 @@ tags:
17
 
18
  # GlobeNomad Visa Dataset
19
 
20
- Long-stay, remote-work and nomad visa records — one per country — each sourced to an official
21
- government page and carrying the date it was last checked.
 
 
 
 
 
22
 
23
  **Free to use, including commercially, under [CC BY 4.0](LICENSE). The only condition is
24
  attribution.**
@@ -51,9 +56,17 @@ never have to work out whether a missing key means an unknown answer or a droppe
51
 
52
  ## How it is verified
53
 
54
- Every figure is checked against the destination country's own government source the immigration
55
- ministry, consulate or national visa portal that issues the permit and that URL travels with the
56
- record in `official_url`.
 
 
 
 
 
 
 
 
57
 
58
  - Records are re-checked at least once a year, and immediately when we learn a rule changed.
59
  - Where an official page is ambiguous or contradicts itself, a second reputable source is
@@ -71,8 +84,9 @@ Full method: <https://globenomad.com/how-we-verify>
71
  dataset is kept clear of them on purpose. Data you can cite has to be data nobody paid to shape.
72
  - **No images.** The country photography on the site is not covered by this licence — only the
73
  data is.
74
- - **No scraped third-party content.** Records are compiled from primary government sources, which
75
- is why each one can carry a link you can check yourself.
 
76
 
77
  ## Attribution
78
 
 
1
  ---
2
  license: cc-by-4.0
3
+ pretty_name: Digital Nomad & Long-Stay Visa Dataset (51 programmes, 46 countries, sourced & dated)
4
  language:
5
  - en
6
  size_categories:
 
17
 
18
  # GlobeNomad Visa Dataset
19
 
20
+ Long-stay, remote-work and nomad visa records — **one per programme** — each sourced to an
21
+ official government page and carrying the date it was last checked.
22
+
23
+ **A country may hold several records.** Thailand publishes four: the DTV, the education visa, the
24
+ retirement route and the Non-B. Group by `country_slug`, not by `slug` — `slug` is the record key.
25
+ See [`CHANGELOG.md`](CHANGELOG.md) if you are holding a file from before 2026-08-27, when this
26
+ was one row per country.
27
 
28
  **Free to use, including commercially, under [CC BY 4.0](LICENSE). The only condition is
29
  attribution.**
 
56
 
57
  ## How it is verified
58
 
59
+ Every record carries the URL it was checked against, in `official_url`, and for most that is the
60
+ issuing authority itself the immigration ministry, consulate, e-visa portal or the programme's
61
+ own government site.
62
+
63
+ **It is not the issuing authority for every record, and the field tells you which.** Some
64
+ governments publish nothing usable, and a few block automated reads outright: the Philippine
65
+ EO 86 record is sourced to a law library because the government pages return 403, and a handful of
66
+ programmes are documented only by a national tourism or investment board. Where that happens the
67
+ record links what was actually read rather than a government URL that does not carry the figure —
68
+ check `official_url` before citing a record as a government source. We would rather publish the
69
+ substitution than imply a provenance the file does not have.
70
 
71
  - Records are re-checked at least once a year, and immediately when we learn a rule changed.
72
  - Where an official page is ambiguous or contradicts itself, a second reputable source is
 
84
  dataset is kept clear of them on purpose. Data you can cite has to be data nobody paid to shape.
85
  - **No images.** The country photography on the site is not covered by this licence — only the
86
  data is.
87
+ - **No scraped third-party content.** Records are compiled from official sources — primarily
88
+ government ones, and where none is usable, the best available published source, named in
89
+ `official_url` so you can judge it yourself. Nothing here is lifted from another visa site.
90
 
91
  ## Attribution
92
 
SCHEMA.md CHANGED
@@ -1,7 +1,7 @@
1
  # Schema — `data/visas.json`
2
 
3
- One UTF-8 JSON object. Top-level metadata, then `records`: an array with one object per country,
4
- sorted by `slug`.
5
 
6
  **The one rule that matters:** `null` means the government has not published that rule. It never
7
  means "no". Every field below is always present on every record — a value is either populated or
@@ -26,23 +26,34 @@ List fields (`requirements`, `steps`, `faqs`) use `[]` for genuinely empty, neve
26
  - **`last_verified_at`** *(string, `YYYY-MM-DD`)* — the newest `verified_at` across all records.
27
  This is a property of the **data**, not of the build: it does not change when the file is
28
  regenerated without changes. For "when was this file built", use the git commit date.
29
- - **`record_count`** *(integer)* — number of objects in `records`.
 
30
  - **`records`** *(array)* — the records, sorted by `slug` ascending.
31
 
32
  ---
33
 
34
  ## Record — identity
35
 
36
- - **`slug`** *(string)* — stable URL-safe country identifier, e.g. `costa-rica`. The primary key;
37
- it does not change when a programme is renamed or replaced.
 
 
 
38
  - **`country`** *(string)* — country name in English, e.g. `Costa Rica`.
39
- - **`region`** *(string)* — broad grouping used for browsing, e.g. `Latin America`, `Europe`,
40
- `Asia-Pacific`. Editorial, not a standards body's list.
 
 
41
  - **`page_url`** *(string)* — the human-readable page for this record on globenomad.com, with the
42
  sourcing and caveats written out. The natural citation target for a single country.
43
 
44
  ## Record — programme
45
 
 
 
 
 
 
46
  - **`visa_name`** *(string)* — the programme's own name, e.g. `D8 Digital Nomad Visa`. Where a
47
  country has no dedicated route, this describes what the record covers instead.
48
  - **`program_status`** *(string, enum)* — one of:
@@ -133,7 +144,14 @@ between them. These fields describe the destination's published position only.
133
 
134
  ## Stability
135
 
136
- - **`slug` is the primary key** and is treated as permanent.
 
 
 
 
 
 
 
137
  - Fields are added, not renamed or repurposed. A consumer reading unknown fields as optional will
138
  not break on an update.
139
  - If a field must ever be withdrawn, it stays present as `null` rather than disappearing, so
 
1
  # Schema — `data/visas.json`
2
 
3
+ One UTF-8 JSON object. Top-level metadata, then `records`: an array with **one object per
4
+ programme**, sorted by `slug`. A country may hold several — group by `country_slug`.
5
 
6
  **The one rule that matters:** `null` means the government has not published that rule. It never
7
  means "no". Every field below is always present on every record — a value is either populated or
 
26
  - **`last_verified_at`** *(string, `YYYY-MM-DD`)* — the newest `verified_at` across all records.
27
  This is a property of the **data**, not of the build: it does not change when the file is
28
  regenerated without changes. For "when was this file built", use the git commit date.
29
+ - **`record_count`** *(integer)* — number of objects in `records`. This is a count of
30
+ **programmes**, not countries; several records may share a `country_slug`.
31
  - **`records`** *(array)* — the records, sorted by `slug` ascending.
32
 
33
  ---
34
 
35
  ## Record — identity
36
 
37
+ - **`slug`** *(string)* — stable URL-safe **record** identifier, e.g. `costa-rica` or
38
+ `thailand-education`. The primary key: unique across the file, and the last segment of
39
+ `page_url`. One country may hold several, one per programme.
40
+ - **`country_slug`** *(string)* — stable URL-safe **country** identifier, e.g. `costa-rica`,
41
+ `thailand`. **Group by this, not by `slug`.** Not unique: Thailand's four records share it.
42
  - **`country`** *(string)* — country name in English, e.g. `Costa Rica`.
43
+ - **`region`** *(string)* — broad grouping used for browsing. Editorial, not a standards body's
44
+ list. The complete set of values in this file is `Africa`, `Americas`, `Asia`, `Europe`,
45
+ `Middle East`. (Before 2026-08-27 this field was documented with the examples `Latin America`
46
+ and `Asia-Pacific`, which have never been values — filtering on either returned nothing.)
47
  - **`page_url`** *(string)* — the human-readable page for this record on globenomad.com, with the
48
  sourcing and caveats written out. The natural citation target for a single country.
49
 
50
  ## Record — programme
51
 
52
+ - **`programme_name`** *(string)* — a short label for the route within its country, e.g.
53
+ `Digital Nomad Visa (DTV)`, `Education Visa (ED)`. Present so a consumer can label a row without
54
+ parsing `slug`. Always populated, and equal to `visa_name` on countries holding a single record;
55
+ it differs only where a country runs several routes and each needs naming briefly. Never use it
56
+ to detect single-record countries — count `country_slug` instead.
57
  - **`visa_name`** *(string)* — the programme's own name, e.g. `D8 Digital Nomad Visa`. Where a
58
  country has no dedicated route, this describes what the record covers instead.
59
  - **`program_status`** *(string, enum)* — one of:
 
144
 
145
  ## Stability
146
 
147
+ - **`slug` is the primary key** and is unique across the file.
148
+ - **⚠ `slug` was redefined on 2026-08-27** — see [`CHANGELOG.md`](CHANGELOG.md). It was documented
149
+ here as a *country* identifier that "does not change when a programme is renamed or replaced".
150
+ The exporter had always written the record's page address into it, and the two agreed only
151
+ because every country held exactly one record. When Thailand's DTV moved to `/visa/thailand-nomad`
152
+ so `/visa/thailand` could list all four Thai routes, that promise broke: the row keyed
153
+ `"thailand"` in the 2026-08-24 file does not exist in this one. **`country_slug` is what `slug`
154
+ was documented to be**, and it is the field to key on if you were relying on that promise.
155
  - Fields are added, not renamed or repurposed. A consumer reading unknown fields as optional will
156
  not break on an update.
157
  - If a field must ever be withdrawn, it stays present as `null` rather than disappearing, so
data/visas.json CHANGED
@@ -1,20 +1,22 @@
1
  {
2
  "dataset": "GlobeNomad Visa Dataset",
3
- "description": "Long-stay, remote-work and nomad visa records, one per country, each sourced to an official government page and carrying the date it was last checked.",
4
  "source": "https://globenomad.com/data",
5
  "method_url": "https://globenomad.com/how-we-verify",
6
  "license": "CC BY 4.0",
7
  "license_url": "https://creativecommons.org/licenses/by/4.0/",
8
  "attribution": "GlobeNomad Visa Dataset — https://globenomad.com",
9
  "null_means": "null means the government has not published this rule. It never means \"no\".",
10
- "last_verified_at": "2026-08-13",
11
- "record_count": 45,
12
  "records": [
13
  {
14
  "slug": "albania",
 
15
  "country": "Albania",
16
  "region": "Europe",
17
  "page_url": "https://globenomad.com/visa/albania",
 
18
  "visa_name": "Unique Permit (Digital Nomad)",
19
  "program_status": "open",
20
  "summary": "Albania is one of Europe's cheapest and most underrated nomad bases — Adriatic and Ionian beaches, a fast-growing scene in Tirana, and a remarkably low cost of living. Its digital nomad route (a Type D visa plus a Unique Permit for 'digital mobile workers') has one of the lowest income bars on the continent, around $815/month, and can be renewed annually for up to five years. The application is fully online.",
@@ -79,9 +81,11 @@
79
  },
80
  {
81
  "slug": "antigua-and-barbuda",
 
82
  "country": "Antigua and Barbuda",
83
  "region": "Americas",
84
  "page_url": "https://globenomad.com/visa/antigua-and-barbuda",
 
85
  "visa_name": "Nomad Digital Residence",
86
  "program_status": "open",
87
  "summary": "Antigua and Barbuda offers 365 beaches and a relaxed Caribbean pace under one of the region's longer nomad visas — two full years. You'll need $50,000/year in income and a $1,500 fee, but there's no local income tax and approval is fast. A strong pick for a longer Caribbean stay, family included.",
@@ -145,9 +149,11 @@
145
  },
146
  {
147
  "slug": "argentina",
 
148
  "country": "Argentina",
149
  "region": "Americas",
150
  "page_url": "https://globenomad.com/visa/argentina",
 
151
  "visa_name": "Digital Nomad Visa",
152
  "program_status": "open",
153
  "summary": "Argentina gives remote workers a low-friction way to live in Buenos Aires and beyond — European-feeling cities, a strong café and food culture, and a cost of living that swings in your favour. There's no fixed income minimum: you show stable foreign earnings via a simple migration process you can do yourself. The trade-off is a shorter horizon than most — 180 days, extendable once to a year.",
@@ -213,9 +219,11 @@
213
  },
214
  {
215
  "slug": "bahamas",
 
216
  "country": "Bahamas",
217
  "region": "Americas",
218
  "page_url": "https://globenomad.com/visa/bahamas",
 
219
  "visa_name": "BEATS (Extended Access Travel Stay)",
220
  "program_status": "open",
221
  "summary": "The Bahamas' BEATS program puts you on 700 islands of turquoise water within a short hop of the US east coast. There's no fixed income minimum — just proof you can support yourself — and approval is quick. The catch is cost: the Bahamas is expensive, with nomads typically spending several thousand a month. Renewable up to three years.",
@@ -278,9 +286,11 @@
278
  },
279
  {
280
  "slug": "barbados",
 
281
  "country": "Barbados",
282
  "region": "Americas",
283
  "page_url": "https://globenomad.com/visa/barbados",
 
284
  "visa_name": "Welcome Stamp",
285
  "program_status": "open",
286
  "summary": "Barbados led the Caribbean nomad-visa wave with its Welcome Stamp — a full year on a famously friendly, English-speaking island of pink-sand beaches and solid infrastructure. The income bar is high ($50,000/year) and the fee steep ($2,000), but there's no local income tax and approval is fast. Best for established earners wanting Caribbean island life.",
@@ -344,9 +354,11 @@
344
  },
345
  {
346
  "slug": "brazil",
 
347
  "country": "Brazil",
348
  "region": "Americas",
349
  "page_url": "https://globenomad.com/visa/brazil",
 
350
  "visa_name": "Digital Nomad Visa (VITEM XIV)",
351
  "program_status": "open",
352
  "summary": "Brazil's VITEM XIV opens one of South America's biggest, most varied countries to remote workers — beaches, big cities, and a low cost of living outside the hotspots ��� at a modest $1,500/month income bar. The catch is paperwork: every foreign document must be apostilled, and that's the single most common reason applications stall. The visa is valid for one year and renewable for a second.",
@@ -412,9 +424,11 @@
412
  },
413
  {
414
  "slug": "cape-verde",
 
415
  "country": "Cape Verde",
416
  "region": "Africa",
417
  "page_url": "https://globenomad.com/visa/cape-verde",
 
418
  "visa_name": "Remote Working Program",
419
  "program_status": "open",
420
  "summary": "Cape Verde is an Atlantic island chain off West Africa — year-round warmth, beaches, and a relaxed Creole-Portuguese culture, in a timezone friendly to both Europe and the Americas. Its Remote Working Program is cheap and fully online, and unusually it asks for an average bank balance rather than a fixed salary. You get six months, renewable.",
@@ -480,9 +494,11 @@
480
  },
481
  {
482
  "slug": "cayman-islands",
 
483
  "country": "Cayman Islands",
484
  "region": "Americas",
485
  "page_url": "https://globenomad.com/visa/cayman-islands",
 
486
  "visa_name": "Global Citizen Concierge Program",
487
  "program_status": "closed",
488
  "summary": "The Cayman Islands ran one of the pandemic era's most exclusive nomad programs — the Global Citizen Concierge Program, a two-year stay for remote workers earning US$100,000+ — and then quietly closed it. As of 2026 it is not accepting applications, making Cayman one of several island programs (Bermuda's went the same way) to shut once tourism recovered. Remote workers can still visit on standard visitor entry; there is simply no dedicated nomad route anymore.",
@@ -544,9 +560,11 @@
544
  },
545
  {
546
  "slug": "colombia",
 
547
  "country": "Colombia",
548
  "region": "Americas",
549
  "page_url": "https://globenomad.com/visa/colombia",
 
550
  "visa_name": "Digital Nomad Visa (Visa V)",
551
  "program_status": "open",
552
  "summary": "Colombia's nomad visa has the lowest income requirement of any major program — around three times the local minimum wage, roughly $1,400/month — for up to two years in Medellín's eternal spring, Bogotá's altitude, or the Caribbean coast. The application is online and decided in weeks.",
@@ -605,9 +623,11 @@
605
  },
606
  {
607
  "slug": "costa-rica",
 
608
  "country": "Costa Rica",
609
  "region": "Americas",
610
  "page_url": "https://globenomad.com/visa/costa-rica",
 
611
  "visa_name": "Digital Nomad Visa (Estancia)",
612
  "program_status": "open",
613
  "summary": "Costa Rica wrote its nomad visa into law with real perks: foreign income is tax-exempt, your home driver's license stays valid, and your work equipment enters duty-free. Pura vida plus surf, jungle, and one of the most stable democracies in the Americas — for a $3,000/month income bar.",
@@ -666,9 +686,11 @@
666
  },
667
  {
668
  "slug": "croatia",
 
669
  "country": "Croatia",
670
  "region": "Europe",
671
  "page_url": "https://globenomad.com/visa/croatia",
 
672
  "visa_name": "Digital Nomad Residence Permit",
673
  "program_status": "open",
674
  "summary": "Croatia was one of Europe's first movers on nomad visas, and the package is solid: up to 18 months of Adriatic coastline, no tax on your foreign remote income while on the permit, and an application you can start online. The catch — it doesn't renew, so it suits a long stay rather than a settling plan.",
@@ -727,9 +749,11 @@
727
  },
728
  {
729
  "slug": "curacao",
 
730
  "country": "Curaçao",
731
  "region": "Americas",
732
  "page_url": "https://globenomad.com/visa/curacao",
 
733
  "visa_name": "@HOME in Curaçao",
734
  "program_status": "open",
735
  "summary": "Curaçao blends Dutch-Caribbean culture, colorful Willemstad, and reliably sunny weather on the edge of the hurricane belt. Its @HOME program is fully online, moderately priced, and asks for around €2,600/month — and foreign income isn't taxed locally. You get six months, renewable once for a year total.",
@@ -794,9 +818,11 @@
794
  },
795
  {
796
  "slug": "cyprus",
 
797
  "country": "Cyprus",
798
  "region": "Europe",
799
  "page_url": "https://globenomad.com/visa/cyprus",
 
800
  "visa_name": "Digital Nomad Visa",
801
  "program_status": "open",
802
  "summary": "Cyprus offers an English-friendly, sunny EU base with over 300 days of sunshine and a low-crime, low-cost lifestyle by Western-European standards. The Migration Department runs the scheme for non-EU remote workers, with a clear €3,500/month net income bar. The main catch is a hard cap on the number of permits issued, so it can close to new applicants — apply when the window is open.",
@@ -862,9 +888,11 @@
862
  },
863
  {
864
  "slug": "czechia",
 
865
  "country": "Czechia",
866
  "region": "Europe",
867
  "page_url": "https://globenomad.com/visa/czechia",
 
868
  "visa_name": "Digital Nomad Programme",
869
  "program_status": "open",
870
  "summary": "Czechia's nomad route is narrower than most: a fast-tracked programme for IT professionals and freelancers from a shortlist of countries, layered on the classic long-stay framework Prague's expats have used for years. If you qualify, you get one of Europe's best cities at half the Western European burn rate.",
@@ -923,9 +951,11 @@
923
  },
924
  {
925
  "slug": "ecuador",
 
926
  "country": "Ecuador",
927
  "region": "Americas",
928
  "page_url": "https://globenomad.com/visa/ecuador",
 
929
  "visa_name": "Digital Nomad Visa",
930
  "program_status": "open",
931
  "summary": "Ecuador packs the Andes, Amazon, Pacific coast, and the Galápagos into a compact, US-dollar economy with a low cost of living. Its digital nomad visa asks for a modest ~$1,446/month, doesn't tax foreign income, and leads to up to two years of legal residency. You apply from a consulate before you arrive.",
@@ -989,9 +1019,11 @@
989
  },
990
  {
991
  "slug": "el-salvador",
 
992
  "country": "El Salvador",
993
  "region": "Americas",
994
  "page_url": "https://globenomad.com/visa/el-salvador",
 
995
  "visa_name": "Digital Nomad Visa",
996
  "program_status": "open",
997
  "summary": "El Salvador has reinvented itself as a safe, dollar-denominated, crypto-friendly base with Pacific surf towns and a growing remote-work scene. Its digital nomad visa is accessible at ~$1,460/month, exempts foreign income from tax, and can extend for years. A compact Central American option that's easy to apply for online.",
@@ -1055,9 +1087,11 @@
1055
  },
1056
  {
1057
  "slug": "estonia",
 
1058
  "country": "Estonia",
1059
  "region": "Europe",
1060
  "page_url": "https://globenomad.com/visa/estonia",
 
1061
  "visa_name": "Digital Nomad Visa",
1062
  "program_status": "open",
1063
  "summary": "Estonia invented the digital nomad visa, and it remains the most digital-friendly bureaucracy in Europe — the same country that runs e-Residency. The income bar is on the higher side, but the process is clear, fast, and entirely English-friendly, with Tallinn's startup scene as the backdrop.",
@@ -1116,9 +1150,11 @@
1116
  },
1117
  {
1118
  "slug": "greece",
 
1119
  "country": "Greece",
1120
  "region": "Europe",
1121
  "page_url": "https://globenomad.com/visa/greece",
 
1122
  "visa_name": "Digital Nomad Visa",
1123
  "program_status": "open",
1124
  "summary": "Greece pairs one of Europe's most livable climates with a nomad visa that converts into a two-year renewable residence permit — and a 50% income tax break for those who shift their tax residence there. Athens and Thessaloniki for city life, the islands for everything else.",
@@ -1177,9 +1213,11 @@
1177
  },
1178
  {
1179
  "slug": "hungary",
 
1180
  "country": "Hungary",
1181
  "region": "Europe",
1182
  "page_url": "https://globenomad.com/visa/hungary",
 
1183
  "visa_name": "White Card",
1184
  "program_status": "open",
1185
  "summary": "Hungary's White Card gives remote workers a budget-friendly EU base in Budapest — grand architecture, thermal baths, and a low cost of living for the Schengen zone. It asks for €3,000/month income plus savings, runs up to two years, and is straightforward to apply for. One caveat: it's a dead-end for residency — it can't lead to permanent residency or citizenship.",
@@ -1244,9 +1282,11 @@
1244
  },
1245
  {
1246
  "slug": "indonesia",
 
1247
  "country": "Indonesia",
1248
  "region": "Asia",
1249
  "page_url": "https://globenomad.com/visa/indonesia",
 
1250
  "visa_name": "Remote Worker Visa (E33G KITAS)",
1251
  "program_status": "open",
1252
  "summary": "Bali finally got a real nomad visa: the E33G remote worker KITAS gives a full year of legal residence (renewable) for remote employees of foreign companies. The income bar is steep at $60,000/year, but it ends the visa-run era for the world's most famous nomad island.",
@@ -1305,9 +1345,11 @@
1305
  },
1306
  {
1307
  "slug": "italy",
 
1308
  "country": "Italy",
1309
  "region": "Europe",
1310
  "page_url": "https://globenomad.com/visa/italy",
 
1311
  "visa_name": "Digital Nomad Visa",
1312
  "program_status": "open",
1313
  "summary": "Italy's long-awaited nomad visa finally arrived in 2024, aimed at 'highly skilled' remote workers. The income bar is moderate by European standards, the visa renews annually, and the prize is living in Italy — the paperwork is heavier than its neighbors, but that's the Italian deal across the board.",
@@ -1366,9 +1408,11 @@
1366
  },
1367
  {
1368
  "slug": "japan",
 
1369
  "country": "Japan",
1370
  "region": "Asia",
1371
  "page_url": "https://globenomad.com/visa/japan",
 
1372
  "visa_name": "Digital Nomad Visa",
1373
  "program_status": "open",
1374
  "summary": "Japan's 2024 nomad visa is short and demanding — six months, no renewal, ¥10 million yearly income — but it's six legal months in Japan, which tourist entries never reliably gave remote workers. For high earners who've always wanted a Tokyo or Kyoto season, this is the clean way to do it.",
@@ -1427,9 +1471,11 @@
1427
  },
1428
  {
1429
  "slug": "latvia",
 
1430
  "country": "Latvia",
1431
  "region": "Europe",
1432
  "page_url": "https://globenomad.com/visa/latvia",
 
1433
  "visa_name": "Digital Nomad Visa",
1434
  "program_status": "open",
1435
  "summary": "Latvia offers an affordable EU base with a digital, fast-internet capital in Riga, Baltic coastline, and easy Schengen travel. Its digital nomad visa is open only to people working for — or self-employed in — OECD-country companies, with a high income bar of about €4,213/month. For OECD-tied remote workers wanting an EU foothold for up to two years, it's a clean option.",
@@ -1494,9 +1540,11 @@
1494
  },
1495
  {
1496
  "slug": "malaysia",
 
1497
  "country": "Malaysia",
1498
  "region": "Asia",
1499
  "page_url": "https://globenomad.com/visa/malaysia",
 
1500
  "visa_name": "DE Rantau Nomad Pass",
1501
  "program_status": "open",
1502
  "summary": "Malaysia's DE Rantau pass is Southeast Asia's most accessible nomad visa: $24,000/year income for digital professionals, 12 months renewable for another 12, and Kuala Lumpur's first-world infrastructure at developing-world prices. Penang and Langkawi are certified 'nomad hubs' with vetted housing and workspaces.",
@@ -1553,11 +1601,97 @@
1553
  "official_url": "https://mdec.my/derantau",
1554
  "verified_at": "2026-07-26"
1555
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1556
  {
1557
  "slug": "malta",
 
1558
  "country": "Malta",
1559
  "region": "Europe",
1560
  "page_url": "https://globenomad.com/visa/malta",
 
1561
  "visa_name": "Nomad Residence Permit",
1562
  "program_status": "open",
1563
  "summary": "Malta pairs an English-speaking, year-round-sunny Mediterranean base with one of Europe's most generous nomad tax deals: a flat 10% on foreign remote-work income once you're tax resident, and a full exemption in your first year. The Residency Malta Agency runs the permit directly, you can apply without an agent, and holding it gives you Schengen travel. The trade-off is a higher income bar than most and a small-island cost of living.",
@@ -1623,9 +1757,11 @@
1623
  },
1624
  {
1625
  "slug": "mauritius",
 
1626
  "country": "Mauritius",
1627
  "region": "Africa",
1628
  "page_url": "https://globenomad.com/visa/mauritius",
 
1629
  "visa_name": "Premium Visa",
1630
  "program_status": "open",
1631
  "summary": "Mauritius is a tropical Indian Ocean base — beaches, a stable economy, and English widely spoken — with one of the most accessible nomad visas anywhere. The Premium Visa has a low $1,500/month income bar, is completely free, and is often approved within about a week. Valid a year and renewable, it's a low-friction way to live and work remotely in paradise.",
@@ -1689,9 +1825,11 @@
1689
  },
1690
  {
1691
  "slug": "mexico",
 
1692
  "country": "Mexico",
1693
  "region": "Americas",
1694
  "page_url": "https://globenomad.com/visa/mexico",
 
1695
  "visa_name": "Temporary Resident Visa",
1696
  "program_status": "open",
1697
  "summary": "Mexico never created a dedicated nomad visa — it didn't need one. The Temporary Resident Visa gives remote workers up to four years of legal residence on an income or savings test, and Mexico City, Oaxaca, and the coasts already host one of the world's largest nomad populations.",
@@ -1751,9 +1889,11 @@
1751
  },
1752
  {
1753
  "slug": "montenegro",
 
1754
  "country": "Montenegro",
1755
  "region": "Europe",
1756
  "page_url": "https://globenomad.com/visa/montenegro",
 
1757
  "visa_name": "Digital Nomad Visa",
1758
  "program_status": "open",
1759
  "summary": "Montenegro packs Adriatic coastline, mountains, and a low cost of living into a small, scenic Balkan country. Its digital nomad visa allows up to four years total and exempts your foreign income from local tax. One important caveat: the program is currently scheduled to end on 31 December 2026, so confirm it's still open before you plan around it.",
@@ -1818,9 +1958,11 @@
1818
  },
1819
  {
1820
  "slug": "namibia",
 
1821
  "country": "Namibia",
1822
  "region": "Africa",
1823
  "page_url": "https://globenomad.com/visa/namibia",
 
1824
  "visa_name": "Digital Nomad Visa",
1825
  "program_status": "open",
1826
  "summary": "Namibia offers dramatic desert-and-safari landscapes, English as the official language, and solid connectivity in Windhoek and Swakopmund — a striking, low-cost African base. Its digital nomad visa is straightforward at $2,000/month income, though it caps at six months with no renewal and requires a chest X-ray as part of the process. Best for a defined half-year stay rather than a long-term move.",
@@ -1885,9 +2027,11 @@
1885
  },
1886
  {
1887
  "slug": "panama",
 
1888
  "country": "Panama",
1889
  "region": "Americas",
1890
  "page_url": "https://globenomad.com/visa/panama",
 
1891
  "visa_name": "Short Stay Remote Worker Visa",
1892
  "program_status": "open",
1893
  "summary": "Panama is the easy on-ramp to Latin America for remote workers — a US-dollar economy, fast Caribbean and Pacific access, and a modern, connected base in Panama City. The short-stay remote worker visa (the country's digital nomad route) asks for solid income and must be filed through a local lawyer, but Panama's territorial tax system means your foreign income isn't taxed here. Best for a 9-to-18-month stay rather than settling.",
@@ -1952,9 +2096,11 @@
1952
  },
1953
  {
1954
  "slug": "peru",
 
1955
  "country": "Peru",
1956
  "region": "Americas",
1957
  "page_url": "https://globenomad.com/visa/peru",
 
1958
  "visa_name": "Digital Nomad Visa",
1959
  "program_status": "announced_not_open",
1960
  "summary": "Peru wrote a digital nomad residence category into law, but as of mid-2026 the application procedure has never been published — there is no way to apply, no official fees, and no launch date. Ignore any site walking you through a Peru nomad visa 'application'; it doesn't exist yet. The good news: nomads live in Peru anyway, on generous tourist stays of up to 183 days a year, with the independent-worker residence route for those who want to stay formally.",
@@ -2014,11 +2160,162 @@
2014
  "official_url": "https://www.gob.pe/migraciones",
2015
  "verified_at": "2026-07-18"
2016
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2017
  {
2018
  "slug": "portugal",
 
2019
  "country": "Portugal",
2020
  "region": "Europe",
2021
  "page_url": "https://globenomad.com/visa/portugal",
 
2022
  "visa_name": "D8 Digital Nomad Visa",
2023
  "program_status": "open",
2024
  "summary": "Portugal's D8 visa is the European benchmark for nomads who want to settle rather than pass through: prove solid remote income, and it converts into a renewable residence permit with a path to permanent residency and citizenship. Mild winters, strong nomad communities in Lisbon, Porto, and Madeira, and full Schengen access while you hold it.",
@@ -2084,9 +2381,11 @@
2084
  },
2085
  {
2086
  "slug": "qatar",
 
2087
  "country": "Qatar",
2088
  "region": "Middle East",
2089
  "page_url": "https://globenomad.com/visa/qatar",
 
2090
  "visa_name": "No Digital Nomad Visa",
2091
  "program_status": "none",
2092
  "summary": "Qatar does not offer a digital nomad visa. Employment in Qatar runs on employer sponsorship, there's no freelance-visa scheme, and the remote-work visa that's been rumoured since the mid-2020s hasn't materialised — only a five-year residence permit for exceptional talent and entrepreneurs has been announced. What exists in practice: visa-free or visa-on-arrival entry for dozens of nationalities, extendable in some cases, which is how the few nomads basing in Doha actually do it.",
@@ -2148,9 +2447,11 @@
2148
  },
2149
  {
2150
  "slug": "romania",
 
2151
  "country": "Romania",
2152
  "region": "Europe",
2153
  "page_url": "https://globenomad.com/visa/romania",
 
2154
  "visa_name": "Digital Nomad Visa",
2155
  "program_status": "open",
2156
  "summary": "Romania pairs a low cost of living with some of Europe's fastest internet, the medieval charm of Transylvania, and a lively hub in Bucharest — plus Schengen-area access. The catch is a steep income bar, pegged at roughly 3× the national average salary (around €5,000+/month). For higher earners wanting an affordable Eastern-European base, it delivers.",
@@ -2215,9 +2516,11 @@
2215
  },
2216
  {
2217
  "slug": "serbia",
 
2218
  "country": "Serbia",
2219
  "region": "Europe",
2220
  "page_url": "https://globenomad.com/visa/serbia",
 
2221
  "visa_name": "Temporary Residence Permit (Remote Work / Self-Employment)",
2222
  "program_status": "open",
2223
  "summary": "Serbia has no branded digital nomad visa — and doesn't need one. Most nationalities get 90 days visa-free, and the real long-stay route is a temporary residence permit based on remote work for foreign clients or on registering as an entrepreneur (the popular flat-tax 'pausalac' setup). Permits can now be issued for up to three years, Belgrade and Novi Sad have genuine nomad scenes, and the cost of living stays well below Western Europe.",
@@ -2282,9 +2585,11 @@
2282
  },
2283
  {
2284
  "slug": "seychelles",
 
2285
  "country": "Seychelles",
2286
  "region": "Africa",
2287
  "page_url": "https://globenomad.com/visa/seychelles",
 
2288
  "visa_name": "Workcation Retreat Program",
2289
  "program_status": "open",
2290
  "summary": "Seychelles is a bucket-list Indian Ocean archipelago — granite peaks, white-sand beaches, and turquoise water — that opened its Workcation program to remote workers. There's no fixed income minimum (just proof you can support yourself), the fee is a flat €45, foreign income isn't taxed locally, and you can stay up to a year. The catch is cost of living: paradise here isn't cheap.",
@@ -2348,9 +2653,11 @@
2348
  },
2349
  {
2350
  "slug": "south-africa",
 
2351
  "country": "South Africa",
2352
  "region": "Africa",
2353
  "page_url": "https://globenomad.com/visa/south-africa",
 
2354
  "visa_name": "Remote Work Visa",
2355
  "program_status": "open",
2356
  "summary": "South Africa offers world-class scenery, Cape Town's strong nomad scene, and a Western lifestyle at a low cost of living, with the rand stretching foreign income far. The Remote Work Visa, introduced in 2024, lets you live here for up to three years on income earned abroad. The income bar is high and processing can be slow, but for a long, affordable base in an English-speaking country it's hard to beat.",
@@ -2415,9 +2722,11 @@
2415
  },
2416
  {
2417
  "slug": "south-korea",
 
2418
  "country": "South Korea",
2419
  "region": "Asia",
2420
  "page_url": "https://globenomad.com/visa/south-korea",
 
2421
  "visa_name": "Workation Visa (F-1-D)",
2422
  "program_status": "open",
2423
  "summary": "South Korea's F-1-D 'workation' visa opens Seoul's hyper-connected, dynamic city life — the world's best mobile internet, safety, and food — to remote workers. The income bar is steep (about $66,000/year, twice Korea's GNI per capita) and it requires real insurance and work history, but for fans of Korea wanting up to two years, it's the legitimate route.",
@@ -2482,9 +2791,11 @@
2482
  },
2483
  {
2484
  "slug": "spain",
 
2485
  "country": "Spain",
2486
  "region": "Europe",
2487
  "page_url": "https://globenomad.com/visa/spain",
 
2488
  "visa_name": "Digital Nomad Visa (Ley de Startups)",
2489
  "program_status": "open",
2490
  "summary": "Spain's digital nomad visa, created by the 2023 Startup Law, is one of Europe's most generous: apply from inside Spain as a tourist and receive a three-year residence permit directly, with an optional flat-tax regime for new residents. Big-city energy in Madrid and Barcelona, islands and coast everywhere else, and full Schengen access included.",
@@ -2549,9 +2860,11 @@
2549
  },
2550
  {
2551
  "slug": "sri-lanka",
 
2552
  "country": "Sri Lanka",
2553
  "region": "Asia",
2554
  "page_url": "https://globenomad.com/visa/sri-lanka",
 
2555
  "visa_name": "Digital Nomad Visa",
2556
  "program_status": "open",
2557
  "summary": "Sri Lanka launched its digital nomad visa in February 2026, opening the island's beaches, tea-country highlands, and wildlife to remote workers at a low cost of living. The bar is accessible — $2,000/month — and holders can open local bank accounts and enrol kids in school. A fresh, well-rounded base in South Asia for up to a year, renewable.",
@@ -2615,9 +2928,11 @@
2615
  },
2616
  {
2617
  "slug": "taiwan",
 
2618
  "country": "Taiwan",
2619
  "region": "Asia",
2620
  "page_url": "https://globenomad.com/visa/taiwan",
 
2621
  "visa_name": "Digital Nomad Visa",
2622
  "program_status": "open",
2623
  "summary": "Taiwan offers world-class food, safety, fast internet, and an affordable, well-connected base in Taipei. Its dedicated digital nomad visa — expanded in January 2026 from six months to a full two years — is a clean, purpose-built route for remote workers, with income tiers by age and a savings requirement. High earners can alternatively use the Employment Gold Card.",
@@ -2681,10 +2996,83 @@
2681
  "verified_at": "2026-07-26"
2682
  },
2683
  {
2684
- "slug": "thailand",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2685
  "country": "Thailand",
2686
  "region": "Asia",
2687
- "page_url": "https://globenomad.com/visa/thailand",
 
2688
  "visa_name": "Destination Thailand Visa (DTV)",
2689
  "program_status": "open",
2690
  "summary": "Thailand's DTV changed the game for Asia-based nomads: a five-year, multiple-entry visa with 180 days per stay, no monthly income requirement — just a savings threshold — and a fee that undercuts almost every Western nomad visa. If your life runs through Bangkok, Chiang Mai, or the islands, this is the one to get.",
@@ -2746,11 +3134,162 @@
2746
  "official_url": "https://www.thaievisa.go.th",
2747
  "verified_at": "2026-07-26"
2748
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2749
  {
2750
  "slug": "uae",
 
2751
  "country": "United Arab Emirates",
2752
  "region": "Middle East",
2753
  "page_url": "https://globenomad.com/visa/uae",
 
2754
  "visa_name": "Virtual Work Residence Visa",
2755
  "program_status": "open",
2756
  "summary": "Dubai's remote work visa is the zero-income-tax play: a one-year renewable residence for remote workers earning $3,500/month, with an Emirates ID, local banking, and the best flight connectivity on the planet. Summer is brutal; October to April is why people stay.",
@@ -2809,9 +3348,11 @@
2809
  },
2810
  {
2811
  "slug": "uruguay",
 
2812
  "country": "Uruguay",
2813
  "region": "Americas",
2814
  "page_url": "https://globenomad.com/visa/uruguay",
 
2815
  "visa_name": "Digital Nomad Permit",
2816
  "program_status": "open",
2817
  "summary": "Uruguay is the quiet, stable choice in South America — safe, democratic, and relaxed, with beach towns like Punta del Este and a livable capital in Montevideo. The Digital Nomad Permit has no minimum income and costs almost nothing: you enter as a tourist, file a short online form with a sworn declaration of means, and you're set for six months. A territorial tax system means foreign income generally isn't taxed.",
@@ -2875,9 +3416,11 @@
2875
  },
2876
  {
2877
  "slug": "vietnam",
 
2878
  "country": "Vietnam",
2879
  "region": "Asia",
2880
  "page_url": "https://globenomad.com/visa/vietnam",
 
2881
  "visa_name": "No nomad or retirement visa",
2882
  "program_status": "none",
2883
  "summary": "Vietnam has no digital nomad visa and no retirement visa, and as of 2026 neither is close to existing — a ten-year 'golden visa' was proposed in April 2025 and has not been enacted. That matters because a lot of people are looking for one: searches for a Vietnamese retirement visa run into the hundreds every month and every result is either an agency selling something else or a guide describing a visa that was never created. What people actually do is live here on repeated 90-day e-visas, which is legal and cheap and is not residence — you accrue no status, no path to permanence, and no protection if the rules change. Anyone offering you a Vietnamese retirement visa is selling you a different product under that name.",
 
1
  {
2
  "dataset": "GlobeNomad Visa Dataset",
3
+ "description": "Long-stay, remote-work and nomad visa records, one per programme, each sourced to an official government page and carrying the date it was last checked.",
4
  "source": "https://globenomad.com/data",
5
  "method_url": "https://globenomad.com/how-we-verify",
6
  "license": "CC BY 4.0",
7
  "license_url": "https://creativecommons.org/licenses/by/4.0/",
8
  "attribution": "GlobeNomad Visa Dataset — https://globenomad.com",
9
  "null_means": "null means the government has not published this rule. It never means \"no\".",
10
+ "last_verified_at": "2026-08-27",
11
+ "record_count": 51,
12
  "records": [
13
  {
14
  "slug": "albania",
15
+ "country_slug": "albania",
16
  "country": "Albania",
17
  "region": "Europe",
18
  "page_url": "https://globenomad.com/visa/albania",
19
+ "programme_name": "Unique Permit (Digital Nomad)",
20
  "visa_name": "Unique Permit (Digital Nomad)",
21
  "program_status": "open",
22
  "summary": "Albania is one of Europe's cheapest and most underrated nomad bases — Adriatic and Ionian beaches, a fast-growing scene in Tirana, and a remarkably low cost of living. Its digital nomad route (a Type D visa plus a Unique Permit for 'digital mobile workers') has one of the lowest income bars on the continent, around $815/month, and can be renewed annually for up to five years. The application is fully online.",
 
81
  },
82
  {
83
  "slug": "antigua-and-barbuda",
84
+ "country_slug": "antigua-and-barbuda",
85
  "country": "Antigua and Barbuda",
86
  "region": "Americas",
87
  "page_url": "https://globenomad.com/visa/antigua-and-barbuda",
88
+ "programme_name": "Nomad Digital Residence",
89
  "visa_name": "Nomad Digital Residence",
90
  "program_status": "open",
91
  "summary": "Antigua and Barbuda offers 365 beaches and a relaxed Caribbean pace under one of the region's longer nomad visas — two full years. You'll need $50,000/year in income and a $1,500 fee, but there's no local income tax and approval is fast. A strong pick for a longer Caribbean stay, family included.",
 
149
  },
150
  {
151
  "slug": "argentina",
152
+ "country_slug": "argentina",
153
  "country": "Argentina",
154
  "region": "Americas",
155
  "page_url": "https://globenomad.com/visa/argentina",
156
+ "programme_name": "Digital Nomad Visa",
157
  "visa_name": "Digital Nomad Visa",
158
  "program_status": "open",
159
  "summary": "Argentina gives remote workers a low-friction way to live in Buenos Aires and beyond — European-feeling cities, a strong café and food culture, and a cost of living that swings in your favour. There's no fixed income minimum: you show stable foreign earnings via a simple migration process you can do yourself. The trade-off is a shorter horizon than most — 180 days, extendable once to a year.",
 
219
  },
220
  {
221
  "slug": "bahamas",
222
+ "country_slug": "bahamas",
223
  "country": "Bahamas",
224
  "region": "Americas",
225
  "page_url": "https://globenomad.com/visa/bahamas",
226
+ "programme_name": "BEATS (Extended Access Travel Stay)",
227
  "visa_name": "BEATS (Extended Access Travel Stay)",
228
  "program_status": "open",
229
  "summary": "The Bahamas' BEATS program puts you on 700 islands of turquoise water within a short hop of the US east coast. There's no fixed income minimum — just proof you can support yourself — and approval is quick. The catch is cost: the Bahamas is expensive, with nomads typically spending several thousand a month. Renewable up to three years.",
 
286
  },
287
  {
288
  "slug": "barbados",
289
+ "country_slug": "barbados",
290
  "country": "Barbados",
291
  "region": "Americas",
292
  "page_url": "https://globenomad.com/visa/barbados",
293
+ "programme_name": "Welcome Stamp",
294
  "visa_name": "Welcome Stamp",
295
  "program_status": "open",
296
  "summary": "Barbados led the Caribbean nomad-visa wave with its Welcome Stamp — a full year on a famously friendly, English-speaking island of pink-sand beaches and solid infrastructure. The income bar is high ($50,000/year) and the fee steep ($2,000), but there's no local income tax and approval is fast. Best for established earners wanting Caribbean island life.",
 
354
  },
355
  {
356
  "slug": "brazil",
357
+ "country_slug": "brazil",
358
  "country": "Brazil",
359
  "region": "Americas",
360
  "page_url": "https://globenomad.com/visa/brazil",
361
+ "programme_name": "Digital Nomad Visa (VITEM XIV)",
362
  "visa_name": "Digital Nomad Visa (VITEM XIV)",
363
  "program_status": "open",
364
  "summary": "Brazil's VITEM XIV opens one of South America's biggest, most varied countries to remote workers — beaches, big cities, and a low cost of living outside the hotspots ��� at a modest $1,500/month income bar. The catch is paperwork: every foreign document must be apostilled, and that's the single most common reason applications stall. The visa is valid for one year and renewable for a second.",
 
424
  },
425
  {
426
  "slug": "cape-verde",
427
+ "country_slug": "cape-verde",
428
  "country": "Cape Verde",
429
  "region": "Africa",
430
  "page_url": "https://globenomad.com/visa/cape-verde",
431
+ "programme_name": "Remote Working Program",
432
  "visa_name": "Remote Working Program",
433
  "program_status": "open",
434
  "summary": "Cape Verde is an Atlantic island chain off West Africa — year-round warmth, beaches, and a relaxed Creole-Portuguese culture, in a timezone friendly to both Europe and the Americas. Its Remote Working Program is cheap and fully online, and unusually it asks for an average bank balance rather than a fixed salary. You get six months, renewable.",
 
494
  },
495
  {
496
  "slug": "cayman-islands",
497
+ "country_slug": "cayman-islands",
498
  "country": "Cayman Islands",
499
  "region": "Americas",
500
  "page_url": "https://globenomad.com/visa/cayman-islands",
501
+ "programme_name": "Global Citizen Concierge Program",
502
  "visa_name": "Global Citizen Concierge Program",
503
  "program_status": "closed",
504
  "summary": "The Cayman Islands ran one of the pandemic era's most exclusive nomad programs — the Global Citizen Concierge Program, a two-year stay for remote workers earning US$100,000+ — and then quietly closed it. As of 2026 it is not accepting applications, making Cayman one of several island programs (Bermuda's went the same way) to shut once tourism recovered. Remote workers can still visit on standard visitor entry; there is simply no dedicated nomad route anymore.",
 
560
  },
561
  {
562
  "slug": "colombia",
563
+ "country_slug": "colombia",
564
  "country": "Colombia",
565
  "region": "Americas",
566
  "page_url": "https://globenomad.com/visa/colombia",
567
+ "programme_name": "Digital Nomad Visa (Visa V)",
568
  "visa_name": "Digital Nomad Visa (Visa V)",
569
  "program_status": "open",
570
  "summary": "Colombia's nomad visa has the lowest income requirement of any major program — around three times the local minimum wage, roughly $1,400/month — for up to two years in Medellín's eternal spring, Bogotá's altitude, or the Caribbean coast. The application is online and decided in weeks.",
 
623
  },
624
  {
625
  "slug": "costa-rica",
626
+ "country_slug": "costa-rica",
627
  "country": "Costa Rica",
628
  "region": "Americas",
629
  "page_url": "https://globenomad.com/visa/costa-rica",
630
+ "programme_name": "Digital Nomad Visa (Estancia)",
631
  "visa_name": "Digital Nomad Visa (Estancia)",
632
  "program_status": "open",
633
  "summary": "Costa Rica wrote its nomad visa into law with real perks: foreign income is tax-exempt, your home driver's license stays valid, and your work equipment enters duty-free. Pura vida plus surf, jungle, and one of the most stable democracies in the Americas — for a $3,000/month income bar.",
 
686
  },
687
  {
688
  "slug": "croatia",
689
+ "country_slug": "croatia",
690
  "country": "Croatia",
691
  "region": "Europe",
692
  "page_url": "https://globenomad.com/visa/croatia",
693
+ "programme_name": "Digital Nomad Residence Permit",
694
  "visa_name": "Digital Nomad Residence Permit",
695
  "program_status": "open",
696
  "summary": "Croatia was one of Europe's first movers on nomad visas, and the package is solid: up to 18 months of Adriatic coastline, no tax on your foreign remote income while on the permit, and an application you can start online. The catch — it doesn't renew, so it suits a long stay rather than a settling plan.",
 
749
  },
750
  {
751
  "slug": "curacao",
752
+ "country_slug": "curacao",
753
  "country": "Curaçao",
754
  "region": "Americas",
755
  "page_url": "https://globenomad.com/visa/curacao",
756
+ "programme_name": "@HOME in Curaçao",
757
  "visa_name": "@HOME in Curaçao",
758
  "program_status": "open",
759
  "summary": "Curaçao blends Dutch-Caribbean culture, colorful Willemstad, and reliably sunny weather on the edge of the hurricane belt. Its @HOME program is fully online, moderately priced, and asks for around €2,600/month — and foreign income isn't taxed locally. You get six months, renewable once for a year total.",
 
818
  },
819
  {
820
  "slug": "cyprus",
821
+ "country_slug": "cyprus",
822
  "country": "Cyprus",
823
  "region": "Europe",
824
  "page_url": "https://globenomad.com/visa/cyprus",
825
+ "programme_name": "Digital Nomad Visa",
826
  "visa_name": "Digital Nomad Visa",
827
  "program_status": "open",
828
  "summary": "Cyprus offers an English-friendly, sunny EU base with over 300 days of sunshine and a low-crime, low-cost lifestyle by Western-European standards. The Migration Department runs the scheme for non-EU remote workers, with a clear €3,500/month net income bar. The main catch is a hard cap on the number of permits issued, so it can close to new applicants — apply when the window is open.",
 
888
  },
889
  {
890
  "slug": "czechia",
891
+ "country_slug": "czechia",
892
  "country": "Czechia",
893
  "region": "Europe",
894
  "page_url": "https://globenomad.com/visa/czechia",
895
+ "programme_name": "Digital Nomad Programme",
896
  "visa_name": "Digital Nomad Programme",
897
  "program_status": "open",
898
  "summary": "Czechia's nomad route is narrower than most: a fast-tracked programme for IT professionals and freelancers from a shortlist of countries, layered on the classic long-stay framework Prague's expats have used for years. If you qualify, you get one of Europe's best cities at half the Western European burn rate.",
 
951
  },
952
  {
953
  "slug": "ecuador",
954
+ "country_slug": "ecuador",
955
  "country": "Ecuador",
956
  "region": "Americas",
957
  "page_url": "https://globenomad.com/visa/ecuador",
958
+ "programme_name": "Digital Nomad Visa",
959
  "visa_name": "Digital Nomad Visa",
960
  "program_status": "open",
961
  "summary": "Ecuador packs the Andes, Amazon, Pacific coast, and the Galápagos into a compact, US-dollar economy with a low cost of living. Its digital nomad visa asks for a modest ~$1,446/month, doesn't tax foreign income, and leads to up to two years of legal residency. You apply from a consulate before you arrive.",
 
1019
  },
1020
  {
1021
  "slug": "el-salvador",
1022
+ "country_slug": "el-salvador",
1023
  "country": "El Salvador",
1024
  "region": "Americas",
1025
  "page_url": "https://globenomad.com/visa/el-salvador",
1026
+ "programme_name": "Digital Nomad Visa",
1027
  "visa_name": "Digital Nomad Visa",
1028
  "program_status": "open",
1029
  "summary": "El Salvador has reinvented itself as a safe, dollar-denominated, crypto-friendly base with Pacific surf towns and a growing remote-work scene. Its digital nomad visa is accessible at ~$1,460/month, exempts foreign income from tax, and can extend for years. A compact Central American option that's easy to apply for online.",
 
1087
  },
1088
  {
1089
  "slug": "estonia",
1090
+ "country_slug": "estonia",
1091
  "country": "Estonia",
1092
  "region": "Europe",
1093
  "page_url": "https://globenomad.com/visa/estonia",
1094
+ "programme_name": "Digital Nomad Visa",
1095
  "visa_name": "Digital Nomad Visa",
1096
  "program_status": "open",
1097
  "summary": "Estonia invented the digital nomad visa, and it remains the most digital-friendly bureaucracy in Europe — the same country that runs e-Residency. The income bar is on the higher side, but the process is clear, fast, and entirely English-friendly, with Tallinn's startup scene as the backdrop.",
 
1150
  },
1151
  {
1152
  "slug": "greece",
1153
+ "country_slug": "greece",
1154
  "country": "Greece",
1155
  "region": "Europe",
1156
  "page_url": "https://globenomad.com/visa/greece",
1157
+ "programme_name": "Digital Nomad Visa",
1158
  "visa_name": "Digital Nomad Visa",
1159
  "program_status": "open",
1160
  "summary": "Greece pairs one of Europe's most livable climates with a nomad visa that converts into a two-year renewable residence permit — and a 50% income tax break for those who shift their tax residence there. Athens and Thessaloniki for city life, the islands for everything else.",
 
1213
  },
1214
  {
1215
  "slug": "hungary",
1216
+ "country_slug": "hungary",
1217
  "country": "Hungary",
1218
  "region": "Europe",
1219
  "page_url": "https://globenomad.com/visa/hungary",
1220
+ "programme_name": "White Card",
1221
  "visa_name": "White Card",
1222
  "program_status": "open",
1223
  "summary": "Hungary's White Card gives remote workers a budget-friendly EU base in Budapest — grand architecture, thermal baths, and a low cost of living for the Schengen zone. It asks for €3,000/month income plus savings, runs up to two years, and is straightforward to apply for. One caveat: it's a dead-end for residency — it can't lead to permanent residency or citizenship.",
 
1282
  },
1283
  {
1284
  "slug": "indonesia",
1285
+ "country_slug": "indonesia",
1286
  "country": "Indonesia",
1287
  "region": "Asia",
1288
  "page_url": "https://globenomad.com/visa/indonesia",
1289
+ "programme_name": "Remote Worker Visa (E33G KITAS)",
1290
  "visa_name": "Remote Worker Visa (E33G KITAS)",
1291
  "program_status": "open",
1292
  "summary": "Bali finally got a real nomad visa: the E33G remote worker KITAS gives a full year of legal residence (renewable) for remote employees of foreign companies. The income bar is steep at $60,000/year, but it ends the visa-run era for the world's most famous nomad island.",
 
1345
  },
1346
  {
1347
  "slug": "italy",
1348
+ "country_slug": "italy",
1349
  "country": "Italy",
1350
  "region": "Europe",
1351
  "page_url": "https://globenomad.com/visa/italy",
1352
+ "programme_name": "Digital Nomad Visa",
1353
  "visa_name": "Digital Nomad Visa",
1354
  "program_status": "open",
1355
  "summary": "Italy's long-awaited nomad visa finally arrived in 2024, aimed at 'highly skilled' remote workers. The income bar is moderate by European standards, the visa renews annually, and the prize is living in Italy — the paperwork is heavier than its neighbors, but that's the Italian deal across the board.",
 
1408
  },
1409
  {
1410
  "slug": "japan",
1411
+ "country_slug": "japan",
1412
  "country": "Japan",
1413
  "region": "Asia",
1414
  "page_url": "https://globenomad.com/visa/japan",
1415
+ "programme_name": "Digital Nomad Visa",
1416
  "visa_name": "Digital Nomad Visa",
1417
  "program_status": "open",
1418
  "summary": "Japan's 2024 nomad visa is short and demanding — six months, no renewal, ¥10 million yearly income — but it's six legal months in Japan, which tourist entries never reliably gave remote workers. For high earners who've always wanted a Tokyo or Kyoto season, this is the clean way to do it.",
 
1471
  },
1472
  {
1473
  "slug": "latvia",
1474
+ "country_slug": "latvia",
1475
  "country": "Latvia",
1476
  "region": "Europe",
1477
  "page_url": "https://globenomad.com/visa/latvia",
1478
+ "programme_name": "Digital Nomad Visa",
1479
  "visa_name": "Digital Nomad Visa",
1480
  "program_status": "open",
1481
  "summary": "Latvia offers an affordable EU base with a digital, fast-internet capital in Riga, Baltic coastline, and easy Schengen travel. Its digital nomad visa is open only to people working for — or self-employed in — OECD-country companies, with a high income bar of about €4,213/month. For OECD-tied remote workers wanting an EU foothold for up to two years, it's a clean option.",
 
1540
  },
1541
  {
1542
  "slug": "malaysia",
1543
+ "country_slug": "malaysia",
1544
  "country": "Malaysia",
1545
  "region": "Asia",
1546
  "page_url": "https://globenomad.com/visa/malaysia",
1547
+ "programme_name": "DE Rantau Nomad Pass",
1548
  "visa_name": "DE Rantau Nomad Pass",
1549
  "program_status": "open",
1550
  "summary": "Malaysia's DE Rantau pass is Southeast Asia's most accessible nomad visa: $24,000/year income for digital professionals, 12 months renewable for another 12, and Kuala Lumpur's first-world infrastructure at developing-world prices. Penang and Langkawi are certified 'nomad hubs' with vetted housing and workspaces.",
 
1601
  "official_url": "https://mdec.my/derantau",
1602
  "verified_at": "2026-07-26"
1603
  },
1604
+ {
1605
+ "slug": "malaysia-mm2h",
1606
+ "country_slug": "malaysia",
1607
+ "country": "Malaysia",
1608
+ "region": "Asia",
1609
+ "page_url": "https://globenomad.com/visa/malaysia-mm2h",
1610
+ "programme_name": "Malaysia My Second Home (MM2H)",
1611
+ "visa_name": "Malaysia My Second Home (MM2H)",
1612
+ "program_status": "open",
1613
+ "summary": "MM2H is not a retirement visa in the sense the other Asian long-stay routes are — it is residence by investment, and the marketing rarely says so. There is no income test at any tier. Instead every participant must place a fixed deposit (from USD 150,000 on Silver) AND buy a Malaysian home (from RM 600,000 on Silver) which cannot be sold for ten years. That combined bar is the highest of any long-stay route in this dataset. Two further things the guides get wrong: the entry tier runs FIVE years, not the ten the programme is still widely described as offering, and you cannot apply yourself — every application must go through a licensed MM2H tour operating business.",
1614
+ "min_income_usd": null,
1615
+ "income_original": "no income test at any tier — the bar is a fixed deposit from USD 150,000 plus a compulsory property purchase from RM 600,000",
1616
+ "cost_usd": 1467,
1617
+ "max_stay_months": 60,
1618
+ "processing_time": "",
1619
+ "requirements": [
1620
+ "⚠ NO INCOME REQUIREMENT EXISTS, at any tier. The bar is capital, and it is two separate commitments — a fixed deposit AND a compulsory property purchase — which most summaries report as one or omit entirely.",
1621
+ "SILVER: fixed deposit USD 150,000 · property from RM 600,000 · participating fee RM 1,000 · pass valid 5 years · minimum age 25.",
1622
+ "GOLD: fixed deposit USD 500,000 · property from RM 1,000,000 · participating fee RM 3,000 · pass valid 15 years · minimum age 25.",
1623
+ "PLATINUM: fixed deposit USD 1,000,000 · property from RM 2,000,000 · participating fee RM 200,000 · pass valid 20 years · minimum age 25. Platinum is the only tier permitted to work, run a business or invest.",
1624
+ "SEZ/SFZ (Forest City, Johor only): fixed deposit USD 65,000 for ages 21–49, or USD 32,000 for ages 50 and above · property in Forest City at the floor price set by Johor state policy · participating fee RM 1,000 · pass valid 10 years.",
1625
+ "⚠ COMPULSORY PROPERTY PURCHASE at every tier, after approval. The residence may not be sold for 10 years unless it is to upgrade to a more expensive one, and failing any condition revokes the pass.",
1626
+ "Up to 50% of the principal fixed deposit may be withdrawn after approval, and only for a residence, education, medical or tourism spending inside Malaysia.",
1627
+ "⚠ YOU CANNOT APPLY DIRECTLY. Every application must be submitted through an MM2H tour operating business licensed by the Ministry of Tourism, Arts & Culture under the Tourism Industry Act 1992, via the One Stop Centre. Agent fees are on top of the government fees and are not published anywhere official.",
1628
+ "Minimum presence of 90 cumulative days per year for participants aged 25–49, which may be met between the principal and/or spouse and dependants. No minimum stay for participants aged 50 and above.",
1629
+ "Compulsory medical check-up at a clinic or hospital on the Ministry's panel, for the principal and every dependant, after approval.",
1630
+ "Government fees beyond the participating fee: processing RM 5,000 for the principal and RM 2,500 per dependant, a visa fee of RM 0–50 depending on nationality, and a fixed pass fee of RM 500 per year.",
1631
+ "Open to nationals of any sovereign country holding diplomatic relations with Malaysia. Final immigration approval rests with the Ministry of Home Affairs, not with the tourism ministry that runs the programme."
1632
+ ],
1633
+ "steps": [
1634
+ "Pick a tier against the capital you can commit and lock up — the deposit and the property together, not either alone.",
1635
+ "Engage an MM2H tour operating business licensed under the Tourism Industry Act 1992. This is mandatory and there is no direct-application route; ask what the agent charges before anything else, because that figure is published nowhere official.",
1636
+ "The agent submits the application through the One Stop Centre MM2H (OSC MM2H).",
1637
+ "On approval, place the fixed deposit in a Malaysian institution licensed under the Financial Services Act 2013 or the Islamic Financial Services Act 2013.",
1638
+ "Complete the compulsory medical check-up at a Ministry panel clinic or hospital, for the principal and every dependant.",
1639
+ "Purchase and own a qualifying residence at or above your tier's minimum value. It cannot be sold for ten years except to upgrade."
1640
+ ],
1641
+ "faqs": [
1642
+ {
1643
+ "question": "What is the income requirement for MM2H?",
1644
+ "answer": "There isn't one. MM2H applies no income test at any tier, which is why it is better understood as residence by investment than as a retirement visa. What it requires instead is capital in two forms at once: a fixed deposit — from USD 150,000 on Silver, USD 500,000 on Gold, USD 1,000,000 on Platinum, and USD 65,000 or USD 32,000 by age band in the Johor SEZ/SFZ tier — and a compulsory property purchase from RM 600,000, RM 1,000,000 and RM 2,000,000 respectively. Taken together that is the highest bar of any long-stay route we hold a record for."
1645
+ },
1646
+ {
1647
+ "question": "How long is an MM2H visa valid?",
1648
+ "answer": "It depends on the tier, and the widely repeated “10-year visa” is no longer the entry offer. Silver runs 5 years, the Johor SEZ/SFZ tier 10 years, Gold 15 years and Platinum 20 years, all renewable, with the pass validity also bounded by the validity of your passport. Anyone quoting a flat ten years for MM2H is describing an older version of the programme."
1649
+ },
1650
+ {
1651
+ "question": "Do I have to buy a property to get MM2H?",
1652
+ "answer": "Yes, at every tier, and it is the condition people most often discover late. The purchase is compulsory after approval, the minimum value is set by tier — from RM 600,000 on Silver — and the residence cannot be sold for ten years unless you are replacing it with a more expensive one. Failing any programme condition revokes the pass. The Johor SEZ/SFZ tier requires the property to be in Forest City specifically."
1653
+ },
1654
+ {
1655
+ "question": "Can I apply for MM2H myself?",
1656
+ "answer": "No. Every application must be submitted through an MM2H tour operating business licensed by the Ministry of Tourism, Arts & Culture under the Tourism Industry Act 1992, and processed via the One Stop Centre. That is a published rule, not a convention — which also explains why the search results for MM2H are almost entirely agencies. Their fees sit on top of the government fees and are published nowhere official, so ask early."
1657
+ },
1658
+ {
1659
+ "question": "Does MM2H exempt me from Malaysian tax?",
1660
+ "answer": "The programme lists a tax exemption on foreign funds and income among its benefits, but read what that actually is. Malaysia taxes territorially and generally exempts foreign-sourced income received by individuals regardless of MM2H — the exemption is a feature of Malaysian tax law, not a privilege the programme confers. The individual exemption has also moved: it was previously due to end on 31 December 2026 and Budget 2026 extended it to 31 December 2036. Confirm the current position with LHDN rather than relying on a programme brochure."
1661
+ },
1662
+ {
1663
+ "question": "Can I work in Malaysia on MM2H?",
1664
+ "answer": "Only on Platinum. The programme's own category table permits business, investment and career activity at the Platinum tier — a USD 1,000,000 fixed deposit and a RM 2,000,000 property — and not at Silver, Gold or the Johor SEZ/SFZ tier. If working in Malaysia is the point, the DE Rantau nomad pass or an employment pass is the route, not MM2H."
1665
+ }
1666
+ ],
1667
+ "renewable": true,
1668
+ "max_total_years": null,
1669
+ "pr_path": null,
1670
+ "pr_after_years": null,
1671
+ "citizenship_path": null,
1672
+ "citizenship_after_years": null,
1673
+ "renewal_note": "The pass is renewable and its validity is additionally bounded by the validity of the participant's passport. The term differs by tier — 5 years on Silver, 10 on the Johor SEZ/SFZ tier, 15 on Gold, 20 on Platinum. ⚠ Whether MM2H leads anywhere permanent is NOT recorded, because the programme's own guidelines do not address permanent residency at all. MM2H is a social visit pass rather than a residence permit, which is a reason to doubt it leads to PR, but it is not a published answer and we do not publish inference as fact.",
1674
+ "tax_residency_days": 182,
1675
+ "foreign_income_taxed": false,
1676
+ "special_tax_regime": false,
1677
+ "tax_note": "special_tax_regime is FALSE on purpose, and the reason is the most-repeated misconception about this programme. MM2H lists a “tax exemption on foreign funds or income” among its category benefits, and it is routinely sold as an MM2H perk. It is not one: Malaysia taxes territorially and generally exempts foreign-sourced income received by individuals whether or not they hold MM2H. The programme restates the ordinary rule; it does not create a regime. The exemption also has a moving expiry — previously 31 December 2026, extended by Budget 2026 to 31 December 2036 — so confirm the current position with LHDN. Malaysian tax residency attaches at 182 days.",
1678
+ "dependents_allowed": true,
1679
+ "spouse_income_add_usd": null,
1680
+ "child_income_add_usd": null,
1681
+ "family_note": "Dependants are unusually broad: spouse; biological, step or adopted children under 21; children aged 21 to 34 provided they are unemployed and single while in Malaysia; medically certified disabled children with no age limit; and parents and parents-in-law. Platinum participants may additionally bring foreign domestic help. There is no income add-on per dependant because there is no income test — the cost of dependants is the RM 2,500 processing fee each, and the 90-day annual presence requirement for under-50s may be satisfied between the principal, the spouse and the dependants rather than by the principal alone.",
1682
+ "apply_from_abroad": true,
1683
+ "apply_method": "mixed",
1684
+ "logistics_note": "SOURCE: mm2h.gov.my, the Ministry of Tourism, Arts and Culture's own programme site — the category pages for Platinum, Gold, Silver and SEZ/SFZ plus the guidelines page, read 2026-08-26. Currency: government fees are published in ringgit and the deposits in US dollars, so both are recorded in their original currency. cost_usd converts the RM 6,000 of unavoidable government fees at the Silver tier — RM 5,000 processing plus RM 1,000 participating — at RM 4.09 to USD 1, the rate on 26 August 2026.\n\n⚠ THE REAL COST IS NOT KNOWABLE FROM OFFICIAL SOURCES, and that is a finding rather than a gap in our research. Because applications must go through a licensed agent, every applicant pays agent fees on top, and no government page publishes what those are. Any total cost figure you see for MM2H is either government fees only — understated — or an agent quoting their own price.\n\nWHY THIS RECORD READS DIFFERENTLY FROM THE MARKETING. Three claims are near-universal and none survives the programme's own guidelines: that MM2H is a ten-year visa (Silver, the entry tier, is five), that it is a retirement visa comparable to Thailand's O-A (it applies no income test and requires a property purchase, which makes it residence by investment), and that it carries a tax exemption (Malaysia's territorial system already exempts foreign-sourced individual income). Note also the state programmes: Sarawak and Sabah run their own MM2H schemes on separate terms, and this record covers the NATIONAL programme only.",
1685
+ "official_url": "https://www.mm2h.gov.my/apply/guidelines",
1686
+ "verified_at": "2026-08-26"
1687
+ },
1688
  {
1689
  "slug": "malta",
1690
+ "country_slug": "malta",
1691
  "country": "Malta",
1692
  "region": "Europe",
1693
  "page_url": "https://globenomad.com/visa/malta",
1694
+ "programme_name": "Nomad Residence Permit",
1695
  "visa_name": "Nomad Residence Permit",
1696
  "program_status": "open",
1697
  "summary": "Malta pairs an English-speaking, year-round-sunny Mediterranean base with one of Europe's most generous nomad tax deals: a flat 10% on foreign remote-work income once you're tax resident, and a full exemption in your first year. The Residency Malta Agency runs the permit directly, you can apply without an agent, and holding it gives you Schengen travel. The trade-off is a higher income bar than most and a small-island cost of living.",
 
1757
  },
1758
  {
1759
  "slug": "mauritius",
1760
+ "country_slug": "mauritius",
1761
  "country": "Mauritius",
1762
  "region": "Africa",
1763
  "page_url": "https://globenomad.com/visa/mauritius",
1764
+ "programme_name": "Premium Visa",
1765
  "visa_name": "Premium Visa",
1766
  "program_status": "open",
1767
  "summary": "Mauritius is a tropical Indian Ocean base — beaches, a stable economy, and English widely spoken — with one of the most accessible nomad visas anywhere. The Premium Visa has a low $1,500/month income bar, is completely free, and is often approved within about a week. Valid a year and renewable, it's a low-friction way to live and work remotely in paradise.",
 
1825
  },
1826
  {
1827
  "slug": "mexico",
1828
+ "country_slug": "mexico",
1829
  "country": "Mexico",
1830
  "region": "Americas",
1831
  "page_url": "https://globenomad.com/visa/mexico",
1832
+ "programme_name": "Temporary Resident Visa",
1833
  "visa_name": "Temporary Resident Visa",
1834
  "program_status": "open",
1835
  "summary": "Mexico never created a dedicated nomad visa — it didn't need one. The Temporary Resident Visa gives remote workers up to four years of legal residence on an income or savings test, and Mexico City, Oaxaca, and the coasts already host one of the world's largest nomad populations.",
 
1889
  },
1890
  {
1891
  "slug": "montenegro",
1892
+ "country_slug": "montenegro",
1893
  "country": "Montenegro",
1894
  "region": "Europe",
1895
  "page_url": "https://globenomad.com/visa/montenegro",
1896
+ "programme_name": "Digital Nomad Visa",
1897
  "visa_name": "Digital Nomad Visa",
1898
  "program_status": "open",
1899
  "summary": "Montenegro packs Adriatic coastline, mountains, and a low cost of living into a small, scenic Balkan country. Its digital nomad visa allows up to four years total and exempts your foreign income from local tax. One important caveat: the program is currently scheduled to end on 31 December 2026, so confirm it's still open before you plan around it.",
 
1958
  },
1959
  {
1960
  "slug": "namibia",
1961
+ "country_slug": "namibia",
1962
  "country": "Namibia",
1963
  "region": "Africa",
1964
  "page_url": "https://globenomad.com/visa/namibia",
1965
+ "programme_name": "Digital Nomad Visa",
1966
  "visa_name": "Digital Nomad Visa",
1967
  "program_status": "open",
1968
  "summary": "Namibia offers dramatic desert-and-safari landscapes, English as the official language, and solid connectivity in Windhoek and Swakopmund — a striking, low-cost African base. Its digital nomad visa is straightforward at $2,000/month income, though it caps at six months with no renewal and requires a chest X-ray as part of the process. Best for a defined half-year stay rather than a long-term move.",
 
2027
  },
2028
  {
2029
  "slug": "panama",
2030
+ "country_slug": "panama",
2031
  "country": "Panama",
2032
  "region": "Americas",
2033
  "page_url": "https://globenomad.com/visa/panama",
2034
+ "programme_name": "Short Stay Remote Worker Visa",
2035
  "visa_name": "Short Stay Remote Worker Visa",
2036
  "program_status": "open",
2037
  "summary": "Panama is the easy on-ramp to Latin America for remote workers — a US-dollar economy, fast Caribbean and Pacific access, and a modern, connected base in Panama City. The short-stay remote worker visa (the country's digital nomad route) asks for solid income and must be filed through a local lawyer, but Panama's territorial tax system means your foreign income isn't taxed here. Best for a 9-to-18-month stay rather than settling.",
 
2096
  },
2097
  {
2098
  "slug": "peru",
2099
+ "country_slug": "peru",
2100
  "country": "Peru",
2101
  "region": "Americas",
2102
  "page_url": "https://globenomad.com/visa/peru",
2103
+ "programme_name": "Digital Nomad Visa",
2104
  "visa_name": "Digital Nomad Visa",
2105
  "program_status": "announced_not_open",
2106
  "summary": "Peru wrote a digital nomad residence category into law, but as of mid-2026 the application procedure has never been published — there is no way to apply, no official fees, and no launch date. Ignore any site walking you through a Peru nomad visa 'application'; it doesn't exist yet. The good news: nomads live in Peru anyway, on generous tourist stays of up to 183 days a year, with the independent-worker residence route for those who want to stay formally.",
 
2160
  "official_url": "https://www.gob.pe/migraciones",
2161
  "verified_at": "2026-07-18"
2162
  },
2163
+ {
2164
+ "slug": "philippines",
2165
+ "country_slug": "philippines",
2166
+ "country": "Philippines",
2167
+ "region": "Asia",
2168
+ "page_url": "https://globenomad.com/visa/philippines",
2169
+ "programme_name": "Special Resident Retiree's Visa (SRRV Classic)",
2170
+ "visa_name": "Special Resident Retiree's Visa (SRRV Classic)",
2171
+ "program_status": "open",
2172
+ "summary": "The SRRV is permanent residency bought with a refundable bank deposit rather than earned through income, which makes it structurally different from every other route in this dataset. The Philippine Retirement Authority sets the deposit by age band and by whether you hold a pension, and the Bureau of Immigration issues the visa. The stay is indefinite with multiple entry, and — uniquely among the Asian long-stay routes we hold — it exempts the holder from needing a separate work or student permit.",
2173
+ "min_income_usd": 800,
2174
+ "income_original": "USD 800/month lifetime pension (single applicant); USD 1,000/month with dependents",
2175
+ "cost_usd": 1500,
2176
+ "max_stay_months": null,
2177
+ "processing_time": "",
2178
+ "requirements": [
2179
+ "Principal must be 40 or over. The visa deposit is set by age band AND pension status: 50+ pensioner USD 15,000 · 40–49 pensioner USD 25,000 · 50+ non-pensioner USD 30,000 · 40–49 non-pensioner USD 50,000.",
2180
+ "The pensioner tiers require proof of a LIFETIME pension of at least USD 800/month for a single applicant, or USD 1,000/month for an applicant with dependents.",
2181
+ "The deposit is a requisite dollar time deposit remitted from abroad into a PRA-accredited bank — it is refundable capital, not a fee, and under SRRV Classic it may be used for investment purposes allowed by the programme.",
2182
+ "PRA processing fee of USD 1,500, plus USD 300 for each joining dependent.",
2183
+ "PRA annual fee of USD 360 covering the principal plus two dependents, payable on joining and every year after, plus USD 100 for each dependent beyond two.",
2184
+ "Medical certificate and police clearance from the country of origin or residence, each issued within 6 months of submission.",
2185
+ "Bureau of Immigration Clearance Certificate. An NBI clearance is additionally required for anyone who has already stayed more than 90 days in the Philippines.",
2186
+ "Documents issued outside the Philippines must be in English and either apostilled or authenticated by a Philippine embassy or consulate.",
2187
+ "⚠ Much lower deposits exist under SRRV Courtesy — USD 1,500 to USD 6,000 — but only for former Filipino citizens, and for retired diplomats, officers of DFA-recognised international organisations and retired military from countries with recognised bilateral relations. Most applicants do not qualify, and PRA's own table for the foreign-national Courtesy tier is laid out ambiguously enough that we are not restating its bands as fact."
2188
+ ],
2189
+ "steps": [
2190
+ "Enter the Philippines on a tourist visa without restrictions, valid for at least one month while the SRRV is processed, and extend it if it expires mid-process.",
2191
+ "Choose a PRA-accredited bank. For a private bank you must first request a Letter of Introduction from PRA at srrvwalkin@pra.gov.ph.",
2192
+ "Remit the visa deposit from a bank abroad as an inward remittance, naming the SRRV deposit, the applicant and the passport number as the remittance purpose.",
2193
+ "Submit the PRA application form with passport, medical certificate, police clearance, BI clearance and eight 2x2 photographs, and pay the USD 1,500 processing fee.",
2194
+ "PRA endorses the approved application to the Bureau of Immigration, which issues the visa."
2195
+ ],
2196
+ "faqs": [
2197
+ {
2198
+ "question": "How much do you need to deposit for an SRRV?",
2199
+ "answer": "It depends on your age and whether you hold a pension, and the figure most sites quote is out of date. PRA's current SRRV Classic tiers are USD 15,000 for a pensioner aged 50 or over, USD 25,000 for a pensioner aged 40–49, USD 30,000 for a non-pensioner aged 50 or over, and USD 50,000 for a non-pensioner aged 40–49. The pensioner tiers require proof of a lifetime pension of at least USD 800 a month, or USD 1,000 with dependents. The deposit is refundable capital held in a PRA-accredited bank, not a fee."
2200
+ },
2201
+ {
2202
+ "question": "Can you work in the Philippines on an SRRV?",
2203
+ "answer": "The SRRV exempts its holder from needing a separate work or student visa or permit, which is unusual — Thailand's O-A retirement visa prohibits employment outright. That exemption is published by PRA among the visa's benefits. It is a different question from whether a particular job or business also needs sector licensing, so take local advice on the specific work rather than treating the exemption as blanket permission."
2204
+ },
2205
+ {
2206
+ "question": "Is the SRRV permanent residency?",
2207
+ "answer": "Yes. PRA describes it as permanent residency with multiple entry and indefinite stay, and holders are exempt from the Bureau of Immigration's annual reporting and from the ACR I-Card. There is no renewal cycle. What recurs is the PRA annual fee — USD 360 for SRRV Classic covering the principal and two dependents — and the status persists while the deposit is maintained and the fee is paid."
2208
+ },
2209
+ {
2210
+ "question": "What is the minimum age for the SRRV?",
2211
+ "answer": "Forty. That is lower than most Asian retirement routes — Thailand's O-A starts at 50 — but the deposit is higher in the 40–49 band: USD 25,000 with a pension and USD 50,000 without, against USD 15,000 and USD 30,000 for applicants aged 50 and over."
2212
+ },
2213
+ {
2214
+ "question": "Are there cheaper SRRV options?",
2215
+ "answer": "Yes, under SRRV Courtesy, at USD 1,500 to USD 6,000 — but eligibility is narrow. It covers former Filipino citizens, retired diplomats, officers of international organisations recognised by the Philippine DFA, retired military from countries with recognised bilateral relations with the Philippines, and certain high achievers. Most applicants do not qualify, and PRA's own table for the foreign-national tiers is laid out ambiguously enough that we do not restate its exact bands here."
2216
+ }
2217
+ ],
2218
+ "renewable": true,
2219
+ "max_total_years": null,
2220
+ "pr_path": true,
2221
+ "pr_after_years": null,
2222
+ "citizenship_path": null,
2223
+ "citizenship_after_years": null,
2224
+ "renewal_note": "Permanent residency is granted on issue rather than after a qualifying period, which is why no PR waiting time is recorded. There is no renewal cycle in the usual sense: the SRRV confers permanent residency with multiple entry and indefinite stay, and holders are exempt from the Bureau of Immigration's annual reporting and from the ACR I-Card. What recurs is the PRA annual fee — USD 360 for the principal plus two dependents. The status persists while the deposit is maintained and the fee is paid.",
2225
+ "tax_residency_days": null,
2226
+ "foreign_income_taxed": null,
2227
+ "special_tax_regime": true,
2228
+ "tax_note": "PRA publishes a specific set of exemptions and we record only those: SRRV holders are exempt from tax on pensions and annuities, from travel tax, and from customs duties on a one-time importation of household goods up to USD 7,000. ⚠ We have NOT verified how the Philippines taxes other foreign income for a resident alien, nor the day threshold at which residency attaches, so both fields are left blank rather than guessed. The pension exemption is not a general foreign-income exemption and must not be read as one.",
2229
+ "dependents_allowed": true,
2230
+ "spouse_income_add_usd": null,
2231
+ "child_income_add_usd": null,
2232
+ "family_note": "Spouse and unmarried children under 21 qualify, and can join on the initial application or be added after the principal's visa is approved. Each joining dependent costs USD 300 in application fees. Two dependents are covered by the principal's deposit; each dependent beyond two requires an additional USD 15,000 deposit, except for former Filipino citizens. The pension threshold also rises from USD 800 to USD 1,000 a month once you have dependents.",
2233
+ "apply_from_abroad": false,
2234
+ "apply_method": "in_country",
2235
+ "logistics_note": "The figure most sites publish for this visa — a USD 10,000 deposit for a pensioner aged 50 or over — is out of date. PRA's own page now sets that applicant at USD 15,000, with the other three Classic tiers at USD 25,000, USD 30,000 and USD 50,000. Checked against pra.gov.ph on 2026-08-25.\n\nTwo things make this route unusual rather than merely cheap. The deposit is refundable capital rather than a fee, so the real cost is the foregone return on it plus USD 1,500 up front and USD 360 a year. And the visa exempts the holder from needing a separate work or student permit — a retirement visa that does not prohibit working, which Thailand's O-A does outright.\n\nApplied for inside the Philippines on a tourist visa. The deposit must arrive as an inward remittance from a bank abroad, so the money moves internationally while the application itself is filed with PRA locally.",
2236
+ "official_url": "https://pra.gov.ph/SRRVisa",
2237
+ "verified_at": "2026-08-25"
2238
+ },
2239
+ {
2240
+ "slug": "philippines-digital-nomad",
2241
+ "country_slug": "philippines",
2242
+ "country": "Philippines",
2243
+ "region": "Asia",
2244
+ "page_url": "https://globenomad.com/visa/philippines-digital-nomad",
2245
+ "programme_name": "Digital Nomad Visa",
2246
+ "visa_name": "Digital Nomad Visa (Executive Order No. 86, s. 2025)",
2247
+ "program_status": "open",
2248
+ "summary": "The Philippines created a digital nomad visa by Executive Order No. 86 on 24 April 2025 and the Department of Foreign Affairs began issuing it at the end of June 2025, so this is a live route rather than an announcement. Two things about it are reported almost everywhere in a form the Executive Order does not support. It sets NO income figure — the text requires \"proof of sufficient income which is generated outside the Philippines\" and names no number. And it is not open to everyone: eligibility is gated on reciprocity, meaning your country must itself offer a digital nomad visa to Filipinos and must host a Philippine Foreign Service Post. No definitive list of qualifying countries has been published, so for most nationalities the honest answer to \"can I apply\" is that the government has not said.",
2249
+ "min_income_usd": null,
2250
+ "income_original": "",
2251
+ "cost_usd": null,
2252
+ "max_stay_months": 12,
2253
+ "processing_time": "",
2254
+ "requirements": [
2255
+ "Be at least 18 years old.",
2256
+ "⚠ RECIPROCITY, and it is the condition that decides most applications: you must be a national of a country that itself offers digital nomad visas to Filipinos, AND where the Philippines maintains a Foreign Service Post. No definitive list of qualifying countries has been published, so eligibility cannot be determined from public sources for most nationalities — ask the Philippine embassy or consulate for your country before making any plan around this visa.",
2257
+ "Work remotely using digital technologies for clients or employers located OUTSIDE the Philippines.",
2258
+ "Proof of sufficient income generated outside the Philippines. ⚠ The Executive Order states no figure. Widely published thresholds of USD 2,000 a month or USD 24,000 a year do NOT appear in the text and we could not verify them against any Department of Foreign Affairs page.",
2259
+ "Must not be employed in the Philippines.",
2260
+ "Valid health insurance covering the period of stay — a stated condition of the visa, not a recommendation.",
2261
+ "No criminal record, and no security threat to the Philippines."
2262
+ ],
2263
+ "steps": [
2264
+ "Confirm your nationality qualifies under the reciprocity condition with the Philippine embassy or consulate covering your country. This is the step that ends most applications and no public list answers it.",
2265
+ "Register on the Philippine eVisa portal at evisa.gov.ph and complete the digital nomad visa application.",
2266
+ "Upload proof of remote work, proof of income generated outside the Philippines, health insurance covering the stay, and a police clearance.",
2267
+ "The Department of Foreign Affairs issues the visa through the Philippine Foreign Service Post handling your application."
2268
+ ],
2269
+ "faqs": [
2270
+ {
2271
+ "question": "Does the Philippines have a digital nomad visa in 2026?",
2272
+ "answer": "Yes. Executive Order No. 86 was signed on 24 April 2025 and the Department of Foreign Affairs began issuing the visa at the end of June 2025. It allows a stay of up to one year, renewable for the same duration, for remote work performed for clients or employers outside the Philippines. The important qualification is that it is not open to every nationality — see the reciprocity condition."
2273
+ },
2274
+ {
2275
+ "question": "What is the income requirement for the Philippines digital nomad visa?",
2276
+ "answer": "Executive Order No. 86 does not state one. Its text requires \"proof of sufficient income which is generated outside the Philippines\" and names no figure. Almost every guide publishes USD 2,000 a month or USD 24,000 a year; neither number appears in the Executive Order, and we could not verify either against a Department of Foreign Affairs source. If a threshold exists it would sit in implementing guidance we have not been able to read, so we record no figure rather than repeat one."
2277
+ },
2278
+ {
2279
+ "question": "Who is eligible for the Philippines digital nomad visa?",
2280
+ "answer": "Nationals of countries that themselves offer digital nomad visas to Filipino citizens, and where the Philippines maintains a Foreign Service Post. That reciprocity condition is written into Executive Order No. 86, and no definitive list of qualifying countries has been published. It means the answer for your specific passport is a question for the Philippine embassy or consulate covering your country, not something any guide including this one can tell you."
2281
+ },
2282
+ {
2283
+ "question": "Can I work for Philippine clients on this visa?",
2284
+ "answer": "No. The Executive Order requires that the work be performed for clients or employers situated outside the Philippines, and separately states that the holder must not be employed in the Philippines. Local clients are outside what this visa permits; the route for working for a Philippine employer is the 9(g) pre-arranged employment visa, which requires an employer to petition for you."
2285
+ },
2286
+ {
2287
+ "question": "Is health insurance required for the Philippines digital nomad visa?",
2288
+ "answer": "Yes. Valid health insurance covering the period of stay is one of the conditions written into Executive Order No. 86 — a documented requirement of the visa rather than general advice. Philippine private hospitals, which is where foreigners are treated, bill upfront, so the cover has a practical job to do beyond satisfying the application."
2289
+ }
2290
+ ],
2291
+ "renewable": true,
2292
+ "max_total_years": null,
2293
+ "pr_path": false,
2294
+ "pr_after_years": null,
2295
+ "citizenship_path": null,
2296
+ "citizenship_after_years": null,
2297
+ "renewal_note": "Executive Order No. 86 sets the stay at up to one year and states that holders may renew for the same duration, with multiple-entry privileges available during validity. The text sets no cap on the number of renewals and no residency or citizenship path attaches to the visa, so max_total_years is left blank rather than guessed.",
2298
+ "tax_residency_days": null,
2299
+ "foreign_income_taxed": null,
2300
+ "special_tax_regime": false,
2301
+ "tax_note": "Executive Order No. 86 contains no tax provisions at all — it neither exempts the holder nor states when Philippine tax residency attaches. Several guides present this visa as carrying a foreign-income exemption; that is not in the instrument that creates it. We have not verified the Philippines' resident-alien treatment of foreign income against a Bureau of Internal Revenue source, so all three tax fields are blank rather than filled from inference.",
2302
+ "dependents_allowed": null,
2303
+ "spouse_income_add_usd": null,
2304
+ "child_income_add_usd": null,
2305
+ "family_note": "Executive Order No. 86 as published does not address accompanying dependants, so we record nothing. Whether spouses and children can be included is a question for the Foreign Service Post handling the application.",
2306
+ "apply_from_abroad": true,
2307
+ "apply_method": "mixed",
2308
+ "logistics_note": "SOURCE, stated plainly because it is not the Official Gazette. The text of Executive Order No. 86 was read on 2026-08-25 at lawphil.net, the Arellano Law Foundation's Philippine law library and the standard citation source for Philippine legal texts. The Official Gazette's own copy (officialgazette.gov.ph) and the Department of Foreign Affairs site both return HTTP 403 to automated reads, so neither could be checked directly; the Bureau of Immigration and the eVisa portal are reachable but publish no digital nomad visa terms. Everything recorded here comes from the Executive Order's operative text.\n\nWHAT MAKES THIS ROUTE DIFFERENT FROM ITS REPUTATION. Two claims are near-universal in coverage of this visa and neither survives the text. The first is an income threshold: there is none in the Executive Order. The second is that the Philippines has 'opened' to digital nomads generally — it has not, because the reciprocity condition limits it to nationals of countries that offer Filipinos the same thing and host a Philippine Foreign Service Post, and the qualifying list has not been published. A visa that is genuinely issuing, to an undisclosed set of nationalities, on an unstated income bar, is a different proposition from the one being marketed.\n\nNote also what this does NOT replace. The SRRV remains the route for anyone 40 or over who can place the deposit: it is permanent residency on issue with no reciprocity gate and no renewal cycle, where this visa is a one-year non-immigrant stay.",
2309
+ "official_url": "https://lawphil.net/executive/execord/eo2025/eo_86_2025.html",
2310
+ "verified_at": "2026-08-25"
2311
+ },
2312
  {
2313
  "slug": "portugal",
2314
+ "country_slug": "portugal",
2315
  "country": "Portugal",
2316
  "region": "Europe",
2317
  "page_url": "https://globenomad.com/visa/portugal",
2318
+ "programme_name": "D8 Digital Nomad Visa",
2319
  "visa_name": "D8 Digital Nomad Visa",
2320
  "program_status": "open",
2321
  "summary": "Portugal's D8 visa is the European benchmark for nomads who want to settle rather than pass through: prove solid remote income, and it converts into a renewable residence permit with a path to permanent residency and citizenship. Mild winters, strong nomad communities in Lisbon, Porto, and Madeira, and full Schengen access while you hold it.",
 
2381
  },
2382
  {
2383
  "slug": "qatar",
2384
+ "country_slug": "qatar",
2385
  "country": "Qatar",
2386
  "region": "Middle East",
2387
  "page_url": "https://globenomad.com/visa/qatar",
2388
+ "programme_name": "No Digital Nomad Visa",
2389
  "visa_name": "No Digital Nomad Visa",
2390
  "program_status": "none",
2391
  "summary": "Qatar does not offer a digital nomad visa. Employment in Qatar runs on employer sponsorship, there's no freelance-visa scheme, and the remote-work visa that's been rumoured since the mid-2020s hasn't materialised — only a five-year residence permit for exceptional talent and entrepreneurs has been announced. What exists in practice: visa-free or visa-on-arrival entry for dozens of nationalities, extendable in some cases, which is how the few nomads basing in Doha actually do it.",
 
2447
  },
2448
  {
2449
  "slug": "romania",
2450
+ "country_slug": "romania",
2451
  "country": "Romania",
2452
  "region": "Europe",
2453
  "page_url": "https://globenomad.com/visa/romania",
2454
+ "programme_name": "Digital Nomad Visa",
2455
  "visa_name": "Digital Nomad Visa",
2456
  "program_status": "open",
2457
  "summary": "Romania pairs a low cost of living with some of Europe's fastest internet, the medieval charm of Transylvania, and a lively hub in Bucharest — plus Schengen-area access. The catch is a steep income bar, pegged at roughly 3× the national average salary (around €5,000+/month). For higher earners wanting an affordable Eastern-European base, it delivers.",
 
2516
  },
2517
  {
2518
  "slug": "serbia",
2519
+ "country_slug": "serbia",
2520
  "country": "Serbia",
2521
  "region": "Europe",
2522
  "page_url": "https://globenomad.com/visa/serbia",
2523
+ "programme_name": "Temporary Residence Permit (Remote Work / Self-Employment)",
2524
  "visa_name": "Temporary Residence Permit (Remote Work / Self-Employment)",
2525
  "program_status": "open",
2526
  "summary": "Serbia has no branded digital nomad visa — and doesn't need one. Most nationalities get 90 days visa-free, and the real long-stay route is a temporary residence permit based on remote work for foreign clients or on registering as an entrepreneur (the popular flat-tax 'pausalac' setup). Permits can now be issued for up to three years, Belgrade and Novi Sad have genuine nomad scenes, and the cost of living stays well below Western Europe.",
 
2585
  },
2586
  {
2587
  "slug": "seychelles",
2588
+ "country_slug": "seychelles",
2589
  "country": "Seychelles",
2590
  "region": "Africa",
2591
  "page_url": "https://globenomad.com/visa/seychelles",
2592
+ "programme_name": "Workcation Retreat Program",
2593
  "visa_name": "Workcation Retreat Program",
2594
  "program_status": "open",
2595
  "summary": "Seychelles is a bucket-list Indian Ocean archipelago — granite peaks, white-sand beaches, and turquoise water — that opened its Workcation program to remote workers. There's no fixed income minimum (just proof you can support yourself), the fee is a flat €45, foreign income isn't taxed locally, and you can stay up to a year. The catch is cost of living: paradise here isn't cheap.",
 
2653
  },
2654
  {
2655
  "slug": "south-africa",
2656
+ "country_slug": "south-africa",
2657
  "country": "South Africa",
2658
  "region": "Africa",
2659
  "page_url": "https://globenomad.com/visa/south-africa",
2660
+ "programme_name": "Remote Work Visa",
2661
  "visa_name": "Remote Work Visa",
2662
  "program_status": "open",
2663
  "summary": "South Africa offers world-class scenery, Cape Town's strong nomad scene, and a Western lifestyle at a low cost of living, with the rand stretching foreign income far. The Remote Work Visa, introduced in 2024, lets you live here for up to three years on income earned abroad. The income bar is high and processing can be slow, but for a long, affordable base in an English-speaking country it's hard to beat.",
 
2722
  },
2723
  {
2724
  "slug": "south-korea",
2725
+ "country_slug": "south-korea",
2726
  "country": "South Korea",
2727
  "region": "Asia",
2728
  "page_url": "https://globenomad.com/visa/south-korea",
2729
+ "programme_name": "Workation Visa (F-1-D)",
2730
  "visa_name": "Workation Visa (F-1-D)",
2731
  "program_status": "open",
2732
  "summary": "South Korea's F-1-D 'workation' visa opens Seoul's hyper-connected, dynamic city life — the world's best mobile internet, safety, and food — to remote workers. The income bar is steep (about $66,000/year, twice Korea's GNI per capita) and it requires real insurance and work history, but for fans of Korea wanting up to two years, it's the legitimate route.",
 
2791
  },
2792
  {
2793
  "slug": "spain",
2794
+ "country_slug": "spain",
2795
  "country": "Spain",
2796
  "region": "Europe",
2797
  "page_url": "https://globenomad.com/visa/spain",
2798
+ "programme_name": "Digital Nomad Visa (Ley de Startups)",
2799
  "visa_name": "Digital Nomad Visa (Ley de Startups)",
2800
  "program_status": "open",
2801
  "summary": "Spain's digital nomad visa, created by the 2023 Startup Law, is one of Europe's most generous: apply from inside Spain as a tourist and receive a three-year residence permit directly, with an optional flat-tax regime for new residents. Big-city energy in Madrid and Barcelona, islands and coast everywhere else, and full Schengen access included.",
 
2860
  },
2861
  {
2862
  "slug": "sri-lanka",
2863
+ "country_slug": "sri-lanka",
2864
  "country": "Sri Lanka",
2865
  "region": "Asia",
2866
  "page_url": "https://globenomad.com/visa/sri-lanka",
2867
+ "programme_name": "Digital Nomad Visa",
2868
  "visa_name": "Digital Nomad Visa",
2869
  "program_status": "open",
2870
  "summary": "Sri Lanka launched its digital nomad visa in February 2026, opening the island's beaches, tea-country highlands, and wildlife to remote workers at a low cost of living. The bar is accessible — $2,000/month — and holders can open local bank accounts and enrol kids in school. A fresh, well-rounded base in South Asia for up to a year, renewable.",
 
2928
  },
2929
  {
2930
  "slug": "taiwan",
2931
+ "country_slug": "taiwan",
2932
  "country": "Taiwan",
2933
  "region": "Asia",
2934
  "page_url": "https://globenomad.com/visa/taiwan",
2935
+ "programme_name": "Digital Nomad Visa",
2936
  "visa_name": "Digital Nomad Visa",
2937
  "program_status": "open",
2938
  "summary": "Taiwan offers world-class food, safety, fast internet, and an affordable, well-connected base in Taipei. Its dedicated digital nomad visa — expanded in January 2026 from six months to a full two years — is a clean, purpose-built route for remote workers, with income tiers by age and a savings requirement. High earners can alternatively use the Employment Gold Card.",
 
2996
  "verified_at": "2026-07-26"
2997
  },
2998
  {
2999
+ "slug": "thailand-education",
3000
+ "country_slug": "thailand",
3001
+ "country": "Thailand",
3002
+ "region": "Asia",
3003
+ "page_url": "https://globenomad.com/visa/thailand-education",
3004
+ "programme_name": "Education Visa (ED)",
3005
+ "visa_name": "Non-Immigrant Visa ED (Education)",
3006
+ "program_status": "open",
3007
+ "summary": "The ED visa is how people stay in Thailand for a year or more by enrolling in a course — Thai language, Muay Thai at a registered gym, or a degree. It is the usual answer for someone under 50 with no Thai employer and no pension, which rules out the O-A and the Non-B. What almost every guide leaves out is that the route tightened sharply in 2025: the Immigration Bureau revoked nearly 10,000 student visas in a single announcement on 22 August 2025, and schools running short non-degree courses now report enrolment monthly into a database immigration cross-checks. Enrolling is no longer the same thing as staying.",
3008
+ "min_income_usd": null,
3009
+ "income_original": "฿20,000 per person / ฿40,000 per family in accessible funds",
3010
+ "cost_usd": 80,
3011
+ "max_stay_months": 3,
3012
+ "processing_time": "2–10 working days; up to 3 months for some nationalities",
3013
+ "requirements": [
3014
+ "A letter of acceptance from a Thai school, university or training institution, signed, with a copy of the signer's Thai ID card or passport — and the signer's work permit too if they are foreign",
3015
+ "The institution's own certificate of registration",
3016
+ "For public or government schools below university level, an approval letter from the Ministry of Education, the Office of the Private Education Commission or the Office of the Basic Education Commission",
3017
+ "A police clearance certificate from your country of nationality or residence, valid no more than three months — routinely omitted from agency guides",
3018
+ "Evidence of funds: ฿20,000 per person or ฿40,000 per family is the figure Thai posts publish, but individual consulates set their own and the US posts ask for a bank balance of $1,000 for a language course and $4,000 for school or university",
3019
+ "Passport valid at least six months from arrival, plus a return ticket and proof of where you will stay",
3020
+ "You cannot work on this visa, and attendance is now checked — see the note on the 2025 crackdown below"
3021
+ ],
3022
+ "steps": [
3023
+ "Pick a school that is licensed to enrol foreign students, and confirm in writing that it is currently authorised — a school that has lost its authorisation still sells courses, and the visa is what stops working, not the lessons",
3024
+ "Enrol and pay, then collect the acceptance letter, the school's registration certificate and, for public schools below university level, the Ministry of Education approval letter",
3025
+ "Order the police clearance certificate early: it expires in three months and it is the document that most often delays an application",
3026
+ "Apply from outside Thailand through the Thai e-Visa portal or a Royal Thai Embassy or Consulate-General. Only single entry is granted, and the visa must be used within three months of issue",
3027
+ "On arrival, an immigration officer grants up to 90 days. That is the whole visa — everything past it is an extension",
3028
+ "Before day 90, file an extension of stay at a Thai immigration office with proof of continued enrolment from the school. The extension is granted at the officer's discretion and costs ฿1,900"
3029
+ ],
3030
+ "faqs": [
3031
+ {
3032
+ "question": "How long can I actually stay on an ED visa?",
3033
+ "answer": "The visa itself gives you up to 90 days. Everything beyond that is an extension of stay applied for inside Thailand, granted at an immigration officer's discretion and renewed on the strength of your continued enrolment. Guides that describe the ED as a one-year visa are describing the extension, not the visa."
3034
+ },
3035
+ {
3036
+ "question": "Can I work on an ED visa?",
3037
+ "answer": "No. Working requires a Non-Immigrant B and a work permit, which is a different route. Working illegally while holding a student visa is the specific behaviour the 2025 crackdown was aimed at."
3038
+ },
3039
+ {
3040
+ "question": "Do I have to actually attend classes?",
3041
+ "answer": "Yes, and this changed in 2025. The Ministry of Higher Education, Science, Research and Innovation now requires institutions running short non-degree courses to report enrolment monthly, and the Immigration Bureau cross-checks those reports. Nearly 10,000 student visas and stay permits were cancelled in the August 2025 sweep, for people who had enrolled and never attended."
3042
+ },
3043
+ {
3044
+ "question": "Is the ED visa cheaper than Thailand Privilege or the DTV?",
3045
+ "answer": "The visa fee is small — roughly $75 to $90 depending on where you apply — but it is not the real cost. School fees for a year of Thai language typically run several times the visa fee, and each extension adds ฿1,900. Compare the total against the DTV before assuming ED is the budget option."
3046
+ }
3047
+ ],
3048
+ "renewable": true,
3049
+ "max_total_years": null,
3050
+ "pr_path": null,
3051
+ "pr_after_years": null,
3052
+ "citizenship_path": null,
3053
+ "citizenship_after_years": null,
3054
+ "renewal_note": "SOURCE: Royal Thai Embassy Warsaw's own category sheet, hosted on image.mfa.go.th, and the Royal Thai Embassy Oslo's ED page, both read 2026-08-27. Both state the extension is \"solely at the discretion of the immigration officer\" — that is the Ministry's wording, not ours, and it is the single most important sentence on this page. Nothing about holding an ED visa entitles you to the year that guides describe.\n\nThe visa is single-entry, valid for entry within three months of issue, and grants up to 90 days. Length of extension is not published as a national rule: university students are commonly extended a year at a time and short-course students in shorter blocks, but no government page states either as an entitlement, so this record does not.",
3055
+ "tax_residency_days": 180,
3056
+ "foreign_income_taxed": true,
3057
+ "special_tax_regime": false,
3058
+ "tax_note": "Same rule as every other Thai visa, and it catches ED holders who assume studying is not living: 180 days in a calendar year makes you a Thai tax resident — not the 183 most countries use — after which foreign income earned from 1 January 2024 onward is taxable when you remit it into Thailand. A year-long course puts you over the line by definition.",
3059
+ "dependents_allowed": null,
3060
+ "spouse_income_add_usd": null,
3061
+ "child_income_add_usd": null,
3062
+ "family_note": "Not published as a rule of the ED visa. Thai posts handle accompanying family case by case and no government page sets out a dependant provision, so this record makes no claim either way. Ask your own consulate before assuming a spouse can come on your enrolment.",
3063
+ "apply_from_abroad": true,
3064
+ "apply_method": "consulate",
3065
+ "logistics_note": "SOURCES, each read individually on 2026-08-27: the Royal Thai Embassy Warsaw category sheet at image.mfa.go.th (documents, validity, period of stay, extension wording); the Royal Thai Embassy Oslo ED page (fee, funds requirement, insurance); the Royal Thai Consulate-General Los Angeles ED page (US bank-balance minimums, and the official_url for this record because it is the US-facing post).\n\n⚠ THERE IS NO SINGLE NATIONAL FEE, and a guide quoting one has picked a post. The fee is set per mission in local currency: Oslo publishes 800 NOK, Vienna €70 and Warsaw 360 PLN for a single entry, all read on 2026-08-27. cost_usd records $80 as the middle of that verified range so the figure is comparable with other records — treat it as an order of magnitude and check your own consulate. The extension of stay inside Thailand is a separate ฿1,900.\n\n⚠ THE 2025 CRACKDOWN IS THE REASON THIS RECORD READS DIFFERENTLY FROM THE MARKETING. On 22 August 2025 Higher Education Minister Sudawan Wangsuphakijkosol announced that the Immigration Bureau, working with the Ministry of Higher Education, Science, Research and Innovation, had revoked nearly 10,000 student visas and temporary stay permits from people who had enrolled and never attended. Institutions running short non-degree courses now submit monthly enrolment reports that immigration cross-checks. The agencies selling ED visas have the same structural reason not to mention this that relocation firms have for not mentioning dead nomad visas — it is the thing that would stop the sale. Reported by Bangkok Post and Khaosod English, 22–26 August 2025; we have not found a numbered ministerial regulation behind it and do not claim one, so this is recorded as an enforcement action with a date rather than as a rule with a citation.",
3066
+ "official_url": "https://thaiconsulatela.thaiembassy.org/en/publicservice/non-immigrant-type-ed-to-study",
3067
+ "verified_at": "2026-08-27"
3068
+ },
3069
+ {
3070
+ "slug": "thailand-nomad",
3071
+ "country_slug": "thailand",
3072
  "country": "Thailand",
3073
  "region": "Asia",
3074
+ "page_url": "https://globenomad.com/visa/thailand-nomad",
3075
+ "programme_name": "Digital Nomad Visa (DTV)",
3076
  "visa_name": "Destination Thailand Visa (DTV)",
3077
  "program_status": "open",
3078
  "summary": "Thailand's DTV changed the game for Asia-based nomads: a five-year, multiple-entry visa with 180 days per stay, no monthly income requirement — just a savings threshold — and a fee that undercuts almost every Western nomad visa. If your life runs through Bangkok, Chiang Mai, or the islands, this is the one to get.",
 
3134
  "official_url": "https://www.thaievisa.go.th",
3135
  "verified_at": "2026-07-26"
3136
  },
3137
+ {
3138
+ "slug": "thailand-retirement",
3139
+ "country_slug": "thailand",
3140
+ "country": "Thailand",
3141
+ "region": "Asia",
3142
+ "page_url": "https://globenomad.com/visa/thailand-retirement",
3143
+ "programme_name": "Retirement Visa (O-A)",
3144
+ "visa_name": "Non-Immigrant Visa O-A (Long Stay)",
3145
+ "program_status": "open",
3146
+ "summary": "Thailand's O-A is the mainstream route for retiring here: one year of stay, renewable indefinitely, open to anyone 50 or over who can show ฿800,000 in the bank or ฿65,000 a month coming in. It is not the DTV and the two are constantly confused — the DTV is a five-year visa for remote workers with no age floor, the O-A is a one-year visa for over-50s who are explicitly forbidden from working. The requirement most applicants get wrong is the health insurance, where Thailand's own consulates publish two different minimums; the section below sets out both and which one binds.",
3147
+ "min_income_usd": 1800,
3148
+ "income_original": "฿800,000 in accessible funds, or ฿65,000/month income",
3149
+ "cost_usd": null,
3150
+ "max_stay_months": 12,
3151
+ "processing_time": "",
3152
+ "requirements": [
3153
+ "Aged 50 or over on the day the application is submitted",
3154
+ "฿800,000 in a bank account, or income of ฿65,000 per month, or a combination of deposit and annual income totalling ฿800,000 a year",
3155
+ "Health insurance — see the note below, because Thai consulates publish two different minimums for this visa and only one of them is current",
3156
+ "A police clearance certificate from your country of nationality or residence, valid no more than three months",
3157
+ "A medical certificate showing freedom from the prohibited diseases, valid no more than three months",
3158
+ "Passport with at least 18 months' validity remaining",
3159
+ "Employment of any kind in Thailand is strictly prohibited on this visa"
3160
+ ],
3161
+ "steps": [
3162
+ "Confirm you are 50 or over on your intended submission date — this is checked against the application date, not your arrival date",
3163
+ "Get the money in place: ฿800,000 in an account in your own name, or documentation of ฿65,000/month income, and be prepared for your consulate to ask how long it has been there",
3164
+ "Buy health insurance that meets the O-A minimum and will issue the certificate the consulate requires — confirm with the insurer in writing before paying, because a policy with enough cover is still refused if the insurer will not complete Thailand's form",
3165
+ "Obtain the police clearance and the medical certificate; both expire in three months, so start them after the money is settled, not before",
3166
+ "Apply from outside Thailand through the Thai e-Visa portal or your local Royal Thai Embassy or Consulate-General",
3167
+ "On arrival you receive one year. To stay beyond it, file an extension of stay at a Thai immigration office inside the country — a different process, with its own financial rules"
3168
+ ],
3169
+ "faqs": [
3170
+ {
3171
+ "question": "How much health insurance does the O-A actually require?",
3172
+ "answer": "Thailand publishes two figures for this visa and both are live on official consulate pages, which is why so many guides contradict each other. The original 2019 rule set a minimum of ฿400,000 inpatient and ฿40,000 outpatient. From 1 October 2021 an amendment required cover for general illness including COVID-19 with a total sum insured of no less than USD 100,000 (about ฿3,000,000), and that is the figure Royal Thai Embassies now ask for on new O-A applications. The Consulate-General in Chicago currently lists both on the same page. Treat USD 100,000 / ฿3,000,000 as the number to meet, and do not buy a ฿400,000 policy on the strength of a blog post — the lower figure is the older rule and still appears in extension-of-stay contexts, which is a different process."
3173
+ },
3174
+ {
3175
+ "question": "Is the O-A the same as the DTV?",
3176
+ "answer": "No, and mixing them up is the most common mistake we see. The DTV is a five-year multiple-entry visa for remote workers, has no minimum age, tests ฿500,000 in accessible funds, and permits remote work for employers outside Thailand. The O-A is a one-year renewable visa for people aged 50 and over, tests ฿800,000 or ฿65,000 a month, and prohibits employment of any kind. If you are over 50 and still working remotely, the DTV is very likely the visa you want."
3177
+ },
3178
+ {
3179
+ "question": "What is the difference between the O-A and the O-X?",
3180
+ "answer": "Both are long-stay visas for the over-50s, but the O-X is a ten-year visa restricted to nationals of a specific list of countries and its financial bar is far higher — ฿3 million held in Thailand, or ฿1.8 million plus ฿1.2 million of annual income, with the deposit maintained for the first year. The O-A is the one-year, ฿800,000 route that most retirees use. Insurance figures get swapped between the two constantly; check which visa a source is describing before you trust a number."
3181
+ },
3182
+ {
3183
+ "question": "Does the O-A make me a Thai tax resident?",
3184
+ "answer": "It is the days that decide, not the visa. Spend 180 days or more in Thailand in a calendar year and you are tax resident — note that Thailand uses 180 days, not the 183 most countries use, and people miscount it. Once resident, foreign income earned from 1 January 2024 onward is taxable when you remit it into Thailand; the old route of bringing money in the following year to avoid tax was closed in 2024. Pensions are treated under the relevant double-tax treaty, which varies by country, so take advice on your own before you move money."
3185
+ },
3186
+ {
3187
+ "question": "Can my spouse come with me on my O-A?",
3188
+ "answer": "Not on your visa. The O-A is issued to an individual and each applicant has to meet the age and financial tests in their own right. A spouse who is also 50 or over can apply for their own O-A; a spouse under 50 generally applies for a Non-Immigrant O as the dependant of an O-A holder, which is a separate application with its own conditions. We have not been able to verify the current dependant rules against a Thai government source, so treat this as the mechanism to ask your consulate about rather than a rule we are asserting."
3189
+ },
3190
+ {
3191
+ "question": "How long can I keep renewing it?",
3192
+ "answer": "There is no published cap. The O-A grants one year, and beyond that you file an extension of stay at a Thai immigration office inside the country, annually. That extension is a different process from the visa with its own financial requirements — the ฿800,000 has to sit in a Thai bank account and be seasoned for a period before you file. On permanent residency we are flagging a mechanism rather than asserting a rule: Thai PR is granted under specific categories and retirement is not one of them, so an O-A is very unlikely to lead there, but Thai Immigration publishes nothing that says so directly and we will not invent a citation for it."
3193
+ }
3194
+ ],
3195
+ "renewable": true,
3196
+ "max_total_years": null,
3197
+ "pr_path": null,
3198
+ "pr_after_years": null,
3199
+ "citizenship_path": null,
3200
+ "citizenship_after_years": null,
3201
+ "renewal_note": "The visa grants one year. Staying longer means an extension of stay filed at a Thai immigration office inside the country, renewed annually, with no published limit on how many times. Do not read the extension's rules off this page: it is a separate process, the ฿800,000 must be held in a Thai bank rather than your home one, and it has a seasoning period before filing. On permanent residency, we are deliberately recording nothing rather than guessing — Thai PR runs through defined categories and retirement is not among them, which makes a PR route very unlikely, but Thai Immigration has published no statement we can cite and an unpublished rule is not the same answer as 'no'.",
3202
+ "tax_residency_days": 180,
3203
+ "foreign_income_taxed": true,
3204
+ "special_tax_regime": false,
3205
+ "tax_note": "Thailand's threshold is 180 days in a calendar year, not the 183 most countries use, and that difference catches people out. Cross it and you are a Thai tax resident, at which point foreign income earned from 1 January 2024 onward is taxable when you remit it into Thailand — the old 'bring it in the following year and it is untaxed' route closed in 2024. For a retiree this bites differently than it does for a nomad, because pension income is usually remitted rather than left offshore. How your pension is actually treated depends on the double-tax treaty between Thailand and your home country, and those differ enough that a general answer would be worthless.",
3206
+ "dependents_allowed": null,
3207
+ "spouse_income_add_usd": null,
3208
+ "child_income_add_usd": null,
3209
+ "family_note": "The O-A is issued individually — each applicant meets the age and financial tests on their own. A spouse aged 50 or over can hold their own O-A. A spouse under 50 generally applies for a Non-Immigrant O as a dependant, separately. We could not verify the current dependant conditions against a Thai government page, so this is recorded as the mechanism to ask about, not as a rule we are stating.",
3210
+ "apply_from_abroad": true,
3211
+ "apply_method": "consulate",
3212
+ "logistics_note": "Applied for from outside Thailand, through the Thai e-Visa portal or a Royal Thai Embassy or Consulate-General. Two things vary by post and are worth checking against your own consulate rather than any guide: the fee, which is set in local currency (the Royal Thai Embassy in Singapore charges SGD 250 for the multiple-entry O-A, so there is no single USD figure to quote), and how long your ฿800,000 must have been in the account before you apply. The seasoning period that circulates online — two months — belongs to the extension of stay filed inside Thailand, which is a different process from this visa.",
3213
+ "official_url": "https://singapore.thaiembassy.org/en/page/non-immigrant-visa-o-a-long-stay",
3214
+ "verified_at": "2026-08-12"
3215
+ },
3216
+ {
3217
+ "slug": "thailand-work",
3218
+ "country_slug": "thailand",
3219
+ "country": "Thailand",
3220
+ "region": "Asia",
3221
+ "page_url": "https://globenomad.com/visa/thailand-work",
3222
+ "programme_name": "Work Visa (Non-B)",
3223
+ "visa_name": "Non-Immigrant Visa B (Business and Work)",
3224
+ "program_status": "open",
3225
+ "summary": "The Non-B is the only route on this page that lets you legally earn money inside Thailand — and it is the one where the hard requirements are not yours. Before a consulate will issue it you need a letter of approval from the Thai Ministry of Labour, which your employer obtains; after you land you apply separately for the work permit that actually authorises the work. The visa is permission to enter, not permission to work, and people conflate the two constantly. Practitioners publish an employer test of ฿2 million registered capital and four Thai employees per foreigner, which is what rules out most small companies — we could not verify that figure on a government page and say so below rather than dressing it up.",
3226
+ "min_income_usd": null,
3227
+ "income_original": "฿20,000 per person / ฿40,000 per family in accessible funds",
3228
+ "cost_usd": 61,
3229
+ "max_stay_months": 3,
3230
+ "processing_time": "Varies by post; the Ministry of Labour approval it depends on takes longer than the visa",
3231
+ "requirements": [
3232
+ "A letter of approval from the Thai Ministry of Labour, obtained by your employer before you apply — without it the consulate will not issue the visa",
3233
+ "Corporate documents of the hiring company: business registration and licence, list of shareholders, company profile, details of business operation, list of foreign workers with names, nationalities and positions, a map to the office, balance sheet and tax filings",
3234
+ "Evidence of adequate finance: ฿20,000 per person or ฿40,000 per family",
3235
+ "Passport valid at least six months, application form, and a 4×6 cm photograph taken within six months",
3236
+ "Alien income tax documentation if you have worked in Thailand before",
3237
+ "A separate work permit, applied for at the Department of Employment after you arrive — the visa alone does not let you work"
3238
+ ],
3239
+ "steps": [
3240
+ "Get hired first. Nothing in this process can start without a Thai employer, because the paperwork is theirs — if you are trying to work for yourself, this route means incorporating a Thai company and meeting its conditions, not applying as an individual",
3241
+ "Your employer applies to the Ministry of Labour for the approval letter and assembles the corporate document pack",
3242
+ "Apply at a Royal Thai Embassy or Consulate-General from outside Thailand: ฿2,000 for single entry valid three months, or ฿5,000 for multiple entry valid one year",
3243
+ "Enter Thailand. An immigration officer grants a maximum of 90 days — that is the visa's whole entitlement",
3244
+ "Apply for the work permit at the Department of Employment. Do not work before it is issued",
3245
+ "Before day 90, file an extension of stay at the Immigration Bureau. The MFA states this may be granted for one year from the date of first entry"
3246
+ ],
3247
+ "faqs": [
3248
+ {
3249
+ "question": "Can I get a Non-B without a job offer?",
3250
+ "answer": "No. The application is built on your employer's documents — the Ministry of Labour approval letter, the corporate registration, the shareholder list, the balance sheet. There is no individual route. Working for yourself means incorporating a Thai company and satisfying the same employer conditions."
3251
+ },
3252
+ {
3253
+ "question": "Does the Non-B let me work?",
3254
+ "answer": "Not on its own. The MFA is explicit that on arrival you must apply for a work permit at the Department of Employment. The visa permits entry and stay; the work permit permits the work. Working before the permit is issued is illegal even with a valid Non-B."
3255
+ },
3256
+ {
3257
+ "question": "Why do so many small companies fail to sponsor one?",
3258
+ "answer": "Thai law firms consistently publish an employer test of ฿2 million in fully paid-up registered capital and four Thai employees for each foreigner, halved on the capital side if you are married to a Thai national. That test is about the company, not you, and it is what a qualified applicant most often gets blocked by. We could not confirm the figures on a government page we could reach, so treat them as the practitioner consensus rather than a cited rule."
3259
+ },
3260
+ {
3261
+ "question": "Is the Non-B better than the DTV for remote workers?",
3262
+ "answer": "For most remote workers, no. The DTV covers income earned outside Thailand, needs no employer and runs five years. The Non-B exists for work performed inside Thailand for a Thai entity, and it is a heavier process with an annual renewal cycle. Choose it because you have a Thai employer, not because it sounds more permanent."
3263
+ }
3264
+ ],
3265
+ "renewable": true,
3266
+ "max_total_years": null,
3267
+ "pr_path": null,
3268
+ "pr_after_years": null,
3269
+ "citizenship_path": null,
3270
+ "citizenship_after_years": null,
3271
+ "renewal_note": "SOURCE: the Ministry of Foreign Affairs' own Non-Immigrant B page, read 2026-08-27. Its words: entry gives \"a maximum period of 90 days\", and an extension of stay may be granted at the Office of the Immigration Bureau \"for a period of one year from the date of first entry\". Renewal runs on an annual cycle tied to continued employment — lose the job and the basis for the extension goes with it.\n\n⚠ PR IS RECORDED AS NOT PUBLISHED, NOT AS ABSENT. Thailand does run a permanent residence route that long-term Non-B holders are the main users of, but the MFA's Non-B page says nothing about it and we have not yet verified the Immigration Bureau's criteria. Leaving the field null renders \"None published\", which is the honest state; writing \"No\" would be a positive claim we cannot support, and writing \"Yes\" would be worse. This is a research gap with a name, and it is the next thing to close on this record.",
3272
+ "tax_residency_days": 180,
3273
+ "foreign_income_taxed": true,
3274
+ "special_tax_regime": false,
3275
+ "tax_note": "Two layers, and Non-B holders are the group most likely to owe on both. Income earned in Thailand for a Thai employer is Thai-source and taxable from the first baht regardless of how many days you spend here. Separately, more than 180 days in a calendar year — not the 183 most countries use — makes you a Thai tax resident, after which foreign income earned since 1 January 2024 is taxable when you remit it into Thailand.",
3276
+ "dependents_allowed": null,
3277
+ "spouse_income_add_usd": null,
3278
+ "child_income_add_usd": null,
3279
+ "family_note": "Not published on the MFA's Non-B page. Spouses and children of Non-B holders are in practice handled through a separate Non-Immigrant O application rather than as dependants on this visa, but that is a different record and we have not verified its rules, so this one makes no claim. Ask your consulate before assuming family can travel on your approval.",
3280
+ "apply_from_abroad": true,
3281
+ "apply_method": "consulate",
3282
+ "logistics_note": "SOURCE: the Ministry of Foreign Affairs page for Non-Immigrant Visa B (Business and Work), read 2026-08-27, which is also official_url. Unlike the ED visa, the fee here IS published nationally in baht rather than set per post: ฿2,000 single entry valid three months, ฿5,000 multiple entry valid one year. cost_usd converts the single-entry fee at ฿32.74 to USD 1, the rate on 26 August 2026 — the baht figure is the real one.\n\n⚠ THE EMPLOYER TEST IS THE REQUIREMENT THAT DECIDES THIS APPLICATION, AND WE COULD NOT VERIFY IT OFFICIALLY. Thai law firms publish it consistently as a 2:1:4 rule — ฿2 million of fully paid-up registered capital and four Thai employees per foreign hire, with the capital halved for a foreigner married to a Thai national. We checked the Board of Investment's own One Start One Stop page for non-BOI businesses on 2026-08-27 and it sets out documents and restricted occupations but states no capital threshold and no employee ratio. So this record carries the figures as practitioner consensus with that caveat attached, the same way the Thailand ED record handles the 2025 crackdown having no numbered regulation behind it. Naming what we could not confirm is the point — the competing pages state it as settled law without a citation, and a reader planning around it deserves to know which it is.\n\n⚠ THE VISA IS NOT THE WORK PERMIT. The MFA requires a Ministry of Labour approval letter BEFORE the visa is issued and a separate work permit from the Department of Employment AFTER arrival. Guides that describe the Non-B as \"the Thailand work visa\" are describing half a process, and the half they omit is the one that makes the work legal.",
3283
+ "official_url": "https://www.mfa.go.th/en/publicservice/non-immigrant-visa-b-for-business-and-work",
3284
+ "verified_at": "2026-08-27"
3285
+ },
3286
  {
3287
  "slug": "uae",
3288
+ "country_slug": "uae",
3289
  "country": "United Arab Emirates",
3290
  "region": "Middle East",
3291
  "page_url": "https://globenomad.com/visa/uae",
3292
+ "programme_name": "Virtual Work Residence Visa",
3293
  "visa_name": "Virtual Work Residence Visa",
3294
  "program_status": "open",
3295
  "summary": "Dubai's remote work visa is the zero-income-tax play: a one-year renewable residence for remote workers earning $3,500/month, with an Emirates ID, local banking, and the best flight connectivity on the planet. Summer is brutal; October to April is why people stay.",
 
3348
  },
3349
  {
3350
  "slug": "uruguay",
3351
+ "country_slug": "uruguay",
3352
  "country": "Uruguay",
3353
  "region": "Americas",
3354
  "page_url": "https://globenomad.com/visa/uruguay",
3355
+ "programme_name": "Digital Nomad Permit",
3356
  "visa_name": "Digital Nomad Permit",
3357
  "program_status": "open",
3358
  "summary": "Uruguay is the quiet, stable choice in South America — safe, democratic, and relaxed, with beach towns like Punta del Este and a livable capital in Montevideo. The Digital Nomad Permit has no minimum income and costs almost nothing: you enter as a tourist, file a short online form with a sworn declaration of means, and you're set for six months. A territorial tax system means foreign income generally isn't taxed.",
 
3416
  },
3417
  {
3418
  "slug": "vietnam",
3419
+ "country_slug": "vietnam",
3420
  "country": "Vietnam",
3421
  "region": "Asia",
3422
  "page_url": "https://globenomad.com/visa/vietnam",
3423
+ "programme_name": "No nomad or retirement visa",
3424
  "visa_name": "No nomad or retirement visa",
3425
  "program_status": "none",
3426
  "summary": "Vietnam has no digital nomad visa and no retirement visa, and as of 2026 neither is close to existing — a ten-year 'golden visa' was proposed in April 2025 and has not been enacted. That matters because a lot of people are looking for one: searches for a Vietnamese retirement visa run into the hundreds every month and every result is either an agency selling something else or a guide describing a visa that was never created. What people actually do is live here on repeated 90-day e-visas, which is legal and cheap and is not residence — you accrue no status, no path to permanence, and no protection if the rules change. Anyone offering you a Vietnamese retirement visa is selling you a different product under that name.",