Google Places API Alternatives in 2026 — 7 Options Compared

Google removed the Places API free tier in February 2025, now requiring a minimum $275/month billing commitment. Here's every serious alternative, compared on price, data quality, features, and ease of use.

Last updated: May 11, 2026

Quick Comparison

Provider Free Tier API Key Required Business Data MCP Server Data Source Best For
BizData API Unlimited free No key needed 37 categories Built-in OpenStreetMap Prototyping, AI tools, Europe
Geoapify 3,000 req/day Yes Full POI No OSM + proprietary Production apps, geocoding
OpenCage 2,500 req/day Yes Geocoding only No OSM + proprietary Geocoding, address lookup
LocationIQ 5,000 req/day Yes Basic POI No OpenStreetMap High-volume geocoding
Foursquare Limited free Yes + OAuth Rich (reviews, tips) No Proprietary Rich venue data, US cities
TomTom Search 2,500 req/day Yes Full POI No Proprietary Navigation, automotive
HERE Search 1,000 req/day Yes Full POI No Proprietary Enterprise, logistics

1. BizData API

2. Geoapify

Geoapify Free tier + $0.40/1K

Full-featured geocoding and places API with both OSM and proprietary data sources. Popular alternative for production applications that need reliable data quality and SLA guarantees.

Example request
curl "https://api.geoapify.com/v2/places?categories=catering.cafe&filter=circle:2.3522,48.8566,5000&apiKey=YOUR_KEY"
  • 3,000 free requests/day
  • Rich POI data with categories
  • Geocoding + routing + maps
  • Good documentation
  • API key required
  • Paid after free tier ($49/mo+)
  • No MCP server integration
  • Complex category taxonomy

3. OpenCage

OpenCage Free tier + $50/mo

Geocoding-focused API that converts addresses to coordinates and vice versa. Not a direct Places API replacement — it doesn't return business listings, but excellent for address-to-coordinate conversion.

  • 2,500 free requests/day
  • Excellent geocoding accuracy
  • 196 countries supported
  • GDPR compliant, EU-hosted option
  • No business/POI search
  • Geocoding only (no categories)
  • API key required
  • No phone, website, or hours data

4. LocationIQ

LocationIQ Free tier + $49/mo

High-volume geocoding and reverse geocoding API based on OpenStreetMap. Good for applications that need to process many addresses but don't need rich business data.

  • 5,000 free requests/day (most generous)
  • Fast response times
  • Autocomplete/search suggestions
  • Static map tiles included
  • Basic POI data only
  • No business contact details
  • API key required
  • Rate limited on free tier

5. Foursquare Places

Foursquare Places Enterprise pricing

The richest venue database available — includes ratings, tips, photos, and popularity data from millions of user check-ins. But enterprise pricing and OAuth make it overkill for most projects.

  • Richest venue data (ratings, tips, photos)
  • Strong US city coverage
  • 100M+ venues globally
  • Popularity and trending data
  • Complex OAuth authentication
  • Enterprise pricing (opaque)
  • Terms restrict many use cases
  • API has changed multiple times

6. TomTom Search API

TomTom Search API Free tier + pay-per-use

Best known for navigation and automotive, TomTom's Search API also handles POI queries. Good fit if you're already using TomTom for maps or routing.

  • 2,500 free requests/day
  • Good POI data quality
  • Fuzzy search and autocomplete
  • Integrated with TomTom maps
  • API key required
  • Limited free tier
  • No MCP/AI integration
  • Better for automotive use cases

7. HERE Geocoding & Search

HERE Geocoding & Search Free tier + enterprise

Enterprise-grade location platform from the former Nokia maps division. Deep data coverage but complex pricing and setup. Best for large organizations with existing HERE contracts.

  • Enterprise-grade SLA
  • Deep global data coverage
  • Comprehensive APIs (maps, routing, search)
  • 1,000 free requests/day
  • Complex pricing structure
  • Overkill for small projects
  • API key + project setup required
  • No MCP/AI integration

Which one should you choose?

For prototyping and AI tool integration: BizData API. No signup, no key, no cost. Add the MCP endpoint to Claude or Cursor and start querying business data immediately. Best data quality in European cities.

For production apps needing reliable POI data: Geoapify. Best balance of data quality, pricing, and features. The 3,000 req/day free tier is enough for most MVPs.

For geocoding only (address → coordinates): LocationIQ (highest free tier at 5,000/day) or OpenCage (best accuracy).

For rich venue data (ratings, photos, tips): Foursquare — but be prepared for enterprise pricing and complex auth.

For enterprise/automotive: TomTom or HERE, depending on your existing tech stack.

Pricing Comparison (May 2026)

Provider Free Tier Starter Plan Production Plan
BizData API Unlimited Free Free
Google Places None (since Feb 2025) $275/mo minimum $0.032/request
Geoapify 3,000 req/day $49/mo (50K req) $149/mo (250K req)
OpenCage 2,500 req/day $50/mo (10K req/day) $200/mo (100K req/day)
LocationIQ 5,000 req/day $49/mo (30K req/day) $99/mo (50K req/day)
Foursquare Limited Contact sales
TomTom 2,500 req/day Pay per use Contact sales
HERE 1,000 req/day Pay per use Contact sales

Try BizData API Now

No signup required. Just make a request:

curl
# Find cafes in Berlin
curl "https://bizdata-web.vercel.app/api/businesses?location=Berlin&category=cafe&limit=5"

# Count restaurants in Tokyo
curl "https://bizdata-web.vercel.app/api/count?location=Tokyo&categories=restaurant"

# Use with AI tools (MCP)
# Add to your MCP config:
# { "mcpServers": { "bizdata": { "url": "https://bizdata-web.vercel.app/api/mcp" } } }

View full API documentation →