<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: VachmiVibe</title>
    <description>The latest articles on DEV Community by VachmiVibe (@vachmivibe).</description>
    <link>https://dev.to/vachmivibe</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3994986%2F302cadfa-701c-4e04-8f6e-e958e3235e64.png</url>
      <title>DEV Community: VachmiVibe</title>
      <link>https://dev.to/vachmivibe</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vachmivibe"/>
    <language>en</language>
    <item>
      <title>I built a free AI-powered relocation tool comparing 95 countries and 668 cities — here's how I did it</title>
      <dc:creator>VachmiVibe</dc:creator>
      <pubDate>Sun, 21 Jun 2026 07:07:45 +0000</pubDate>
      <link>https://dev.to/vachmivibe/i-built-a-free-ai-powered-relocation-tool-comparing-95-countries-and-668-cities-heres-how-i-did-1g9j</link>
      <guid>https://dev.to/vachmivibe/i-built-a-free-ai-powered-relocation-tool-comparing-95-countries-and-668-cities-heres-how-i-did-1g9j</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;I was researching international relocation and found the existing &lt;br&gt;
tools deeply frustrating:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Numbeo is the gold standard but costs $260/month for API access&lt;/li&gt;
&lt;li&gt;Most comparison sites cover 20–30 countries at best&lt;/li&gt;
&lt;li&gt;Nothing gives you a personalised recommendation based on YOUR 
priorities&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;Placemappr (placemappr.com) is a free relocation research platform:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;95 countries with composite relocation scores&lt;/li&gt;
&lt;li&gt;668 cities with weather, air quality and quality of life data&lt;/li&gt;
&lt;li&gt;AI-powered 6-question quiz matching you to your top countries&lt;/li&gt;
&lt;li&gt;Currency and live exchange rates&lt;/li&gt;
&lt;li&gt;Political stability ratings with context (World Bank WGI data)&lt;/li&gt;
&lt;li&gt;Government type, languages spoken, major religions per country&lt;/li&gt;
&lt;li&gt;Blog with data-driven expat guides&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything is free. No paywalls.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Next.js 15 + TypeScript + Tailwind CSS v4&lt;/li&gt;
&lt;li&gt;Supabase (PostgreSQL + Auth)&lt;/li&gt;
&lt;li&gt;Groq API for AI matching (free tier — llama-3.3-70b-versatile)&lt;/li&gt;
&lt;li&gt;Vercel for hosting&lt;/li&gt;
&lt;li&gt;Open-Meteo for air quality (free, no API key needed)&lt;/li&gt;
&lt;li&gt;OpenWeatherMap for city weather&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Total infrastructure cost: $0/month&lt;/p&gt;

&lt;h2&gt;
  
  
  Data Sources
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Country scores: WhereNext (CC BY 4.0 — World Bank, WHO, OECD data)&lt;/li&gt;
&lt;li&gt;Cities: SimpleMaps free database (668 cities, population &amp;gt; 1M)&lt;/li&gt;
&lt;li&gt;Political stability: World Bank WGI with disclaimer explaining 
the index measures physical security perception not democratic 
strength&lt;/li&gt;
&lt;li&gt;Exchange rates: ExchangeRate-API (free tier)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Interesting Technical Challenges
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Token limits with Groq:&lt;/strong&gt; Sending all 95 countries to the LLM &lt;br&gt;
exceeded the 12,000 token/minute free tier limit. Solution: &lt;br&gt;
pre-filter to 25 most relevant countries based on budget and &lt;br&gt;
region before sending to Groq. Dropped from ~12,500 to ~3,000 &lt;br&gt;
tokens per request.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;City data without Teleport:&lt;/strong&gt; The popular Teleport API is now &lt;br&gt;
defunct. Derived city quality scores from country-level data &lt;br&gt;
with population-tier adjustments instead.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;REST Countries API redirects:&lt;/strong&gt; Returns 301 redirects that &lt;br&gt;
Node.js doesn't follow by default. Replaced with a hardcoded &lt;br&gt;
currency map for all 95 countries — more reliable anyway.&lt;/p&gt;

&lt;h2&gt;
  
  
  Revenue Plan
&lt;/h2&gt;

&lt;p&gt;Currently $0. Planning:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Google AdSense (high CPC finance/relocation category)&lt;/li&gt;
&lt;li&gt;Affiliate links (Wise, SafetyWing, NordVPN)&lt;/li&gt;
&lt;li&gt;Premium tier (detailed reports, cost alerts)&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Current Status
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Live at placemappr.com&lt;/li&gt;
&lt;li&gt;23/766 pages indexed by Google so far (new domain)&lt;/li&gt;
&lt;li&gt;Working on backlinks and content to speed up indexing&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I'd Love Feedback On
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;What data would make you actually use this for a relocation 
decision?&lt;/li&gt;
&lt;li&gt;Is the AI quiz useful or gimmicky?&lt;/li&gt;
&lt;li&gt;What countries or cities are missing that matter to you?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Happy to answer any questions about the tech stack or data!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
