Discover/The Infatuation API
live

The Infatuation APItheinfatuation.com

Access The Infatuation's restaurant reviews, ratings, city guides, and neighborhood data via 5 structured endpoints covering search, browse, and detail retrieval.

This API takes change requests — .
Endpoint health
verified 6d ago
get_restaurant_review
get_city_neighborhoods
get_cities_list
search_restaurants
browse_restaurants_by_city
5/5 passing latest checkself-healing
Endpoints
5
Updated
6d ago

What is the The Infatuation API?

The Infatuation API exposes restaurant review and guide data across 5 endpoints, covering city discovery, neighborhood listings, keyword search, and full review retrieval. The search_restaurants endpoint lets you query by keyword and city slug, returning rated review objects with cuisine, neighborhood, and contributor fields. The get_restaurant_review endpoint delivers structured review content including full review text, editorial rating, address, and cuisine classification for a specific restaurant.

This call costs1 credit / call— charged only on success
Try it
Pagination cursor from pageInfo.endpageDirectionCode of a previous response.
Number of results to return per page.
Search keyword to filter restaurants (e.g. 'pizza', 'sushi', 'brunch').
City slug identifying the market to search within (e.g. 'new-york', 'los-angeles', 'chicago').
api.parse.bot/scraper/c453b6b3-b2c3-4ad7-81ab-9ad465817930/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c453b6b3-b2c3-4ad7-81ab-9ad465817930/search_restaurants?limit=5&query=pizza&location=new-york' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalmissing one? ·

Search for reviewed restaurants by keyword and location. Returns paginated results from The Infatuation's review database. Each result includes place details, rating, categories, cuisines, neighborhoods, and contributors. Pagination uses a cursor-based scheme.

Input
ParamTypeDescription
afterstringPagination cursor from pageInfo.endpageDirectionCode of a previous response.
limitintegerNumber of results to return per page.
querystringSearch keyword to filter restaurants (e.g. 'pizza', 'sushi', 'brunch').
locationrequiredstringCity slug identifying the market to search within (e.g. 'new-york', 'los-angeles', 'chicago').
Response
{
  "type": "object",
  "fields": {
    "nodes": "array of restaurant review objects with place details, rating, categories, cuisines, neighborhoods, and contributors",
    "pageInfo": "object with endpageDirectionCode (pagination cursor), startpageDirectionCode, and moreDataIndicator",
    "receivedRecordCount": "integer total matching results",
    "endpageDirectionCode": "string pagination cursor for fetching the next page (promoted from pageInfo for SDK pagination)"
  }
}

About the The Infatuation API

What the API covers

The Infatuation API surfaces editorial restaurant content from theinfatuation.com across five endpoints. Coverage spans city-level discovery through get_cities_list, which returns city names, URL paths, and system identifiers. Once you have a city slug, get_city_neighborhoods returns the neighborhoods for that city — each with a name, path, and ID — useful for scoping subsequent queries. Both search_restaurants and browse_restaurants_by_city accept a city slug as a required input and return paginated nodes arrays containing place details, editorial rating, categories, cuisines, neighborhood assignments, and contributor attribution.

Search and browse endpoints

search_restaurants accepts an optional query string (e.g. 'sushi', 'brunch') alongside the required location slug. browse_restaurants_by_city returns the full mix of reviews and guides for a city without a keyword filter. Both endpoints return a pageInfo object containing endpageDirectionCode, startpageDirectionCode, and moreDataIndicator. Pass endpageDirectionCode as the after cursor on the next call to page through results. The receivedRecordCount field gives the total number of matching records.

Detailed review data

get_restaurant_review requires both a city slug and a slug field (the slugName available from search results). It returns an array of JSON-LD structured review objects typed as Review, containing author, reviewBody, reviewRating, and itemReviewed — the latter encapsulating the restaurant's name, address, and cuisine. This endpoint is the right choice when you need the full editorial text rather than the summary fields returned by search and browse.

Reliability & maintenanceVerified

The The Infatuation API is a managed, monitored endpoint for theinfatuation.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when theinfatuation.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official theinfatuation.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a city dining guide app that lists neighborhoods via get_city_neighborhoods and drills into reviews with get_restaurant_review.
  • Aggregate editorial ratings and cuisine tags from search_restaurants to compare coverage across multiple cities.
  • Populate a restaurant recommendation engine using reviewer ratings, neighborhood IDs, and category fields from browse_restaurants_by_city.
  • Extract full review text and structured address data from get_restaurant_review for NLP-based sentiment or cuisine classification work.
  • Map restaurant density by neighborhood using neighborhood ID and name fields returned by get_city_neighborhoods.
  • Sync a curated dining dataset across all covered cities using get_cities_list to enumerate slugs and then paginate through each city's posts.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does The Infatuation have an official public developer API?+
The Infatuation does not publish an official public developer API or documented developer program as of this writing.
What does `search_restaurants` return beyond a restaurant's name?+
Each node in the nodes array includes place details, an editorial rating, categories, cuisines, neighborhood assignments, and contributor attribution. The pageInfo object provides endpageDirectionCode for cursor-based pagination and a moreDataIndicator flag to detect whether additional pages exist.
Does the API expose user-submitted reviews or only editorial content?+
The API returns editorial content authored by The Infatuation's contributors. There are no user-submitted review fields in the current endpoints. You can fork this API on Parse and revise it to add an endpoint targeting a different data source if user review aggregation is required.
Are menu data or reservation availability included?+
Not currently. The endpoints cover editorial ratings, review text, cuisine tags, neighborhood, address, and contributor fields. Menu items and real-time reservation availability are not part of the response schema. You can fork this API on Parse and revise it to add endpoints that target menu or booking data from other sources.
How does pagination work across search and browse endpoints?+
Both search_restaurants and browse_restaurants_by_city return a pageInfo object. Pass the endpageDirectionCode value from one response as the after parameter in the next request to retrieve the following page. The moreDataIndicator field tells you whether additional results remain.
Page content last updated . Spec covers 5 endpoints from theinfatuation.com.
Related APIs in Food DiningSee all →
thefork.it API
Search and discover Italian restaurants by cuisine, location, or ratings, then access detailed information like menus, reviews, and availability across major cities in Italy. Find top-rated dining options and compare restaurant details to plan your perfect meal.
thefork.com API
Search for restaurants and check real-time table availability to find and book your next dining reservation. Get detailed information about restaurants including menus, pricing, and reservation slots all in one place.
resy.com API
Search for restaurants across cities and check real-time availability to find open reservation slots on Resy. Discover trending and top-rated venues with detailed information about dining options, menus, and available time slots across selected dates.
opentable.com API
Search for restaurants across the US with ratings, reviews, photos, and pricing information, plus get real-time availability and autocomplete suggestions as you type. Check reservation openings and explore detailed restaurant features to find and book your perfect dining experience.
guide.michelin.com API
Access data from guide.michelin.com.
tock.com API
Search for restaurants on Tock and discover detailed information including their accolades, FAQs, menus, and contact details all in one place. Find the perfect dining experience with comprehensive restaurant profiles and booking options.
tabelog.com API
Search for restaurants and view detailed information like menus, ratings, and reviews on Tabelog, then instantly check real-time table availability to book your ideal dining experience. Get comprehensive restaurant profiles including cuisine type, price range, and customer feedback to make informed dining decisions.
slicelife.com API
Search for pizza restaurants across multiple cities, view detailed restaurant information, and browse complete menus to find exactly what you're looking for. Discover pizza spots in all available cities and get everything you need to make your ordering decision.