← Back to GeoPrice

🔌 GeoPrice API — Pricing Data for Developers

Access regional pricing data for 20+ services. Free for small projects.

✨ No API key required for free tier

Live API Response

Here's what you get — real data, updated regularly.

GET /api/v1/prices.json — Response (excerpt)
{
  "version": "1.0",
  "updated": "2026-05-17",
  "source": "https://geoprice.fyi",
  "countries": {
    "US": "United States", "IN": "India",
    "TR": "Turkey", "AR": "Argentina", ...
  },
  "ppp_multipliers": {
    "IN": 0.3, "TR": 0.35,
    "AR": 0.25, "BR": 0.55, ...
  },
  "services": [
    {
      "id": "spotify",
      "name": "Spotify Premium",
      "category": "music",
      "usPrice": 11.99,
      "prices": {
        "IN": 1.42, "TR": 1.58,
        "AR": 2.00, "BR": 4.29, ...
      }
    },
    // ... 19 more services
  ]
}

Endpoint

GET /api/v1/prices.json

Returns all services with per-country USD-equivalent prices, PPP multipliers, and metadata.

Response Schema

FieldTypeDescription
versionstringAPI version
updatedstringDate of last price update (YYYY-MM-DD)
countriesobjectCountry code → full name mapping
ppp_multipliersobjectCountry code → PPP multiplier relative to US (1.0)
services[]arrayArray of service objects
services[].idstringUnique service identifier
services[].namestringHuman-readable service name
services[].categorystringService category (music, streaming, productivity, etc.)
services[].usPricenumberUS monthly price in USD
services[].pricesobjectCountry code → USD-equivalent monthly price

💡 PPP Multipliers — Estimate Prices for ANY Service

The API includes Purchasing Power Parity multipliers. Use them to estimate what any service might cost in another country — even ones not in our database.

// If a service costs $50/mo in the US:
India estimate = $50 × 0.30 = $15.00/mo
Turkey estimate = $50 × 0.35 = $17.50/mo
Argentina estimate = $50 × 0.25 = $12.50/mo
Brazil estimate = $50 × 0.55 = $27.50/mo

Use Cases

Real pricing data for real products.

💰

Budgeting Apps

Show users how much they're overpaying on subscriptions. Help them find cheaper regions and save 30-80%.

🤖

AI Agents

Give your bot real pricing data to help users save money. "What's the cheapest country for Netflix?" — your agent knows.

📊

Deal Sites

Embed regional pricing comparisons in your reviews. Show readers exactly how much they'd save with regional pricing.

🏢

B2B Procurement

Audit your company's SaaS spend for regional savings. A 100-seat Adobe license in Argentina vs US? That's real money.

Code Examples

Get started in seconds.

JavaScript (fetch)
const res = await fetch('https://geoprice.fyi/api/v1/prices.json');
const data = await res.json();

// Find cheapest country for Spotify
const spotify = data.services.find(s => s.id === 'spotify');
const cheapest = Object.entries(spotify.prices)
  .sort(([,a], [,b]) => a - b)[0];

console.log(`Cheapest Spotify: ${data.countries[cheapest[0]]} at $${cheapest[1]}/mo`);
// → Cheapest Spotify: India at $1.42/mo

// Estimate any service using PPP multipliers
const usPrice = 50; // Your service's US price
const indiaEstimate = usPrice * data.ppp_multipliers.IN;
console.log(`India estimate: $${indiaEstimate.toFixed(2)}/mo`);
// → India estimate: $15.00/mo
Python (requests)
import requests

data = requests.get('https://geoprice.fyi/api/v1/prices.json').json()

# Find cheapest country for Netflix
netflix = next(s for s in data['services'] if s['id'] == 'netflix')
cheapest = min(netflix['prices'].items(), key=lambda x: x[1])

print(f'Cheapest Netflix: {data["countries"][cheapest[0]]} at ${cheapest[1]}/mo')
# → Cheapest Netflix: Argentina at $6.25/mo

# Estimate any service using PPP multipliers
us_price = 50  # Your service's US price
india_estimate = us_price * data['ppp_multipliers']['IN']
print(f'India estimate: ${india_estimate:.2f}/mo')
# → India estimate: $15.00/mo

Try It Now

The API is live. No signup. No API key. Just fetch the URL.

Open /api/v1/prices.json →

Pricing

Start free. Scale when you need to.

Free
$0

For personal projects & prototypes

  • 100 requests/day
  • All services & PPP data
  • Attribution required
  • Community support
Just Use It →
Enterprise
$299 /mo

For large-scale integrations

  • Unlimited requests
  • Custom data feeds
  • Webhook price updates
  • 99.9% SLA
  • Dedicated support
Contact Us

Start Building with GeoPrice Data Today

Real pricing data for real products. No signup, no API key, no nonsense.

Get the Data →