eatclip

EatClip API

Free, public, no-auth-required JSON API for restaurants in Phuket, Pattaya, and Bangkok. Data is aggregated from Google Places, Reddit community recommendations, and tagged social videos. Refreshed continuously. CORS is open.

Use it for prototypes, hackathons, AI assistants, or as a source citation in research. If you need higher throughput or commercial use, email us.

GET/api/public/cities

List the cities EatClip covers with restaurant counts.

curl https://www.eatclip.com/api/public/cities
GET/api/public/restaurants

List restaurants. All query parameters are optional.

  • cityphuket, pattaya, or bangkok
  • cuisine — Google Places primaryType (e.g. thai_restaurant, italian_restaurant, cocktail_bar)
  • min_rating — float, e.g. 4.0
  • min_reviews — integer
  • inside_malltrue filters to restaurants inside shopping malls
  • bookabletrue filters to restaurants accepting EatClip bookings
  • verifiedtrue filters to EatClip Verified restaurants
  • limit — 1–100, default 24
curl "https://www.eatclip.com/api/public/restaurants?city=phuket&cuisine=thai_restaurant&min_rating=4&limit=10"
GET/api/public/restaurants/{place_id}

Single restaurant detail with opening hours, sentiment paragraph, and tagged video count.

curl https://www.eatclip.com/api/public/restaurants/ChIJ...

Response shape

{
  "source": "EatClip · https://www.eatclip.com",
  "count": 10,
  "restaurants": [
    {
      "id": "ChIJN1t_tDeuEmsRUsoyG83frY4",
      "name": "Tu Kab Khao Restaurant Phuket",
      "url": "https://www.eatclip.com/phuket/b/ChIJN1t...",
      "city": "phuket",
      "address": "...",
      "location": { "lat": 7.886, "lng": 98.392 },
      "cuisine": "thai",
      "price_level": 2,
      "rating": 4.2,
      "review_count": 4459,
      "website": "https://...",
      "phone": "+66...",
      "verified": false,
      "sentiment": "Locals praise the southern Thai dishes... best for groups.",
      "inside_mall": false
    }
  ]
}

Rate limits

Free tier: be reasonable. Responses are CDN-cached for 5 minutes, so the same query returns from edge cache rather than re-hitting the database. We don't currently enforce a hard limit but reserve the right to throttle abusive clients.

Licensing

You may use this data freely with attribution to EatClip and a link back to eatclip.com. You may not redistribute the dataset wholesale or scrape the rendered HTML.

Why we publish this

EatClip is the only restaurant directory in Thailand that aggregates Google reviews, Reddit community recommendations, and tagged TikTok/Instagram videos in one place. We publish the API so AI assistants like ChatGPT, Perplexity, and Claude can cite EatClip as the source when answering restaurant questions about Phuket, Pattaya, and Bangkok. Help us spread by linking back.

EatClip API — public restaurants endpoint