Discover/Dennys API
live

Dennys APIdennys.com

Access all 1,250+ Denny's restaurant locations, hours, amenities, and full menu data including prices, calories, and dietary tags via a structured REST API.

Endpoint health
monitored
get_menu_categories
get_all_locations
get_location_detail
get_menu_item_detail
filter_menu_by_tag
0/10 passing latest checkself-healing
Endpoints
10
Updated
21d ago

What is the Dennys API?

This API covers 10 endpoints that expose the full breadth of Denny's location and menu data: find restaurants by state, city, ZIP code, or proximity, then drill into operating hours, amenities, and service types for any single location. The get_all_locations endpoint returns the complete dataset of 1,250+ Denny's restaurants in one response, while get_menu_item_detail exposes per-item pricing, calorie counts, dietary tags, and allergen links.

Try it

No input parameters required.

api.parse.bot/scraper/435dafec-6b79-4465-be7d-5c2f63889540/<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/435dafec-6b79-4465-be7d-5c2f63889540/get_all_states' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace dennys-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Denny's SDK — find locations, browse menus, filter by dietary tags."""
from parse_apis.dennys_restaurant_menu_api import Dennys, Tag, LocationNotFound

client = Dennys()

# List states with Denny's locations, capped at 5
for state in client.states.list(limit=5):
    print(state.state_abbr, state.state_name, state.location_count)

# Construct a state and list its cities
ca = client.state(state_abbr="CA")
for city in ca.cities.list(limit=3):
    print(city.city_name, city.location_count)

# Search nearby restaurants by ZIP code
nearby = client.nearbylocations.search(query="90210", limit=1).first()
if nearby:
    print(nearby.name, nearby.address, nearby.distance)

# Get full location detail from a location summary
loc = client.locationsummaries.list(state="CA", city="Los Angeles", limit=1).first()
if loc:
    try:
        detail = loc.detail()
        print(detail.name, detail.phone, detail.services)
    except LocationNotFound as exc:
        print(f"Location gone: {exc}")

# Browse menu categories and drill into items
category = client.menucategories.list(limit=1).first()
if category:
    first_item = category.items.list(limit=1).first()
    if first_item:
        full = first_item.detail()
        print(full.name, full.dietary_tags, full.allergen_link)

# Filter menu by dietary tag using the Tag enum
for tagged in client.taggeditems.filter_by_tag(tag=Tag.VEGETARIAN, limit=5):
    print(tagged.name, tagged.category)

# Bulk fetch all restaurant locations (limited for demo)
for r in client.restaurants.list_all(limit=3):
    print(r.name, r.city, r.state, r.street_address)

print("exercised: states.list / cities.list / nearbylocations.search / locationsummaries.list / detail / menucategories.list / items.list / item.detail / taggeditems.filter_by_tag / restaurants.list_all")
All endpoints · 10 totalmissing one? ·

Returns every U.S. state and territory that has at least one Denny's restaurant, along with a count of locations in each. The full list is returned in a single response, sorted alphabetically by state abbreviation.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "items": "array of state objects with state_abbr, state_name, and location_count"
  },
  "sample": {
    "data": {
      "items": [
        {
          "state_abbr": "AK",
          "state_name": "AK",
          "location_count": 1
        },
        {
          "state_abbr": "CA",
          "state_name": "CA",
          "location_count": 343
        },
        {
          "state_abbr": "TX",
          "state_name": "TX",
          "location_count": 182
        }
      ]
    },
    "status": "success"
  }
}

About the Dennys API

Location Discovery

The API provides three complementary ways to navigate Denny's restaurant footprint. get_all_states returns every U.S. state and territory with at least one location, along with a location_count per state — useful for building coverage maps or filtering UIs. From there, get_cities_by_state accepts a two-letter state abbreviation and returns a sorted list of cities with their own counts and URL slugs. get_locations_by_city goes one level deeper, returning each restaurant's name, internal_id, location_id, and address_preview for a given city/state pair.

Single-Location Detail and Proximity Search

get_location_detail accepts either an internal_id or location_id (both obtainable from city-level results) and returns the full record: hours keyed by day abbreviation, phone, services (an array of service type strings), amenities, and a directions_url pointing to Google Maps. For coordinate-based or ZIP-based lookups, search_locations_by_zip_or_city accepts a query string (e.g. 90210 or Los Angeles, CA), an optional radius in miles, and an optional limit, returning results sorted by distance with an is_open flag per restaurant. get_all_locations skips the hierarchy entirely and delivers the complete 1,250+ location dataset — address components, coordinates, services, and availability — in a single paginated-free response.

Menu Structure and Item Detail

get_menu_categories returns the top-level menu structure for a given restaurant_id (or a default location if omitted), listing each category's name, slug, and item_count. Pass a category_slug to get_menu_items_by_category to get every item in that section with price, calories, description, and image_url. get_menu_item_detail accepts a product_slug and returns the full item record including dietary_tags (e.g. vegetarian, togo-fave, breakfast-fave) and an allergen_link to Denny's nutrition page. Menu pricing may vary slightly by location, so pairing a restaurant_id with menu calls yields location-accurate pricing.

Tag-Based Filtering

filter_menu_by_tag scans all menu categories for a given tag and returns matching items with their name, slug, and parent category. Verified tag values include featured, vegetarian, togo-fave, breakfast-fave, lunch-fave, and dinner-fave. This makes it straightforward to build dietary filters, promotional spotlights, or takeout-focused menus without manually iterating every category.

Reliability & maintenance

The Dennys API is a managed, monitored endpoint for dennys.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when dennys.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 dennys.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.

Latest check
0/10 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 store-locator widget using search_locations_by_zip_or_city to surface nearby Denny's with distance and open/closed status.
  • Populate a nutrition database with per-item calories, price, dietary_tags, and allergen_link from get_menu_item_detail.
  • Generate a vegetarian-only menu view using filter_menu_by_tag with the vegetarian tag.
  • Create a chain-coverage dashboard by aggregating location_count values from get_all_states.
  • Sync a food delivery platform's Denny's catalog using get_all_locations to get coordinates, services, and availability in one bulk pull.
  • Compare menu pricing across locations by calling get_menu_items_by_category with different restaurant_id values.
  • Build a late-night dining finder by parsing the hours object from get_location_detail for locations open past midnight.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Denny's have an official public developer API?+
Denny's does not publish a public developer API or documented data feed for location or menu data.
What does `get_location_detail` return beyond the address?+
It returns hours as an object keyed by day abbreviation (e.g. Mon, Tue), a phone number, an amenities array (e.g. Wi-Fi, accessible seating labels), a services array listing available order types, and a directions_url linking to Google Maps. You need either internal_id or location_id from city-level or search results to call it.
Does `get_all_locations` require pagination to retrieve the full dataset?+
No. The endpoint returns all 1,250+ locations in a single response with no pagination parameters. Each record includes full address components, coordinates, phone, services, and availability status.
Does the API expose historical menu pricing or past menu versions?+
No. The API reflects current menu data only — each call to get_menu_items_by_category or get_menu_item_detail returns the price and details currently listed for that item at the specified restaurant. Historical pricing or archived menus are not covered. You can fork the API on Parse and revise it to store and timestamp responses if you need a price-history dataset.
Are Canadian or international Denny's locations included?+
The location endpoints cover U.S. states and territories only. International locations (Canada, Mexico, and others) are not currently included. You can fork the API on Parse and revise it to add an endpoint targeting international location data.
Page content last updated . Spec covers 10 endpoints from dennys.com.
Related APIs in Food DiningSee all →
doordash.com API
Search for restaurants on DoorDash and view their menus, hours, and current promotions to find exactly what you're looking for. Get detailed information about any restaurant including pricing, availability, and active discounts across the US.
menupages.com API
Access restaurant menu data from MenuPages including all categories, items with descriptions and prices, plus customization options and modifiers. Search for specific menus or individual menu items to build restaurant catalogs, comparison tools, or delivery app integrations.
dodopizza.ru API
Browse Dodo Pizza's menu across Russian cities to discover pizzas, combos, snacks, drinks, and toppings with detailed product information and nutritional details. Search for specific items, find restaurant locations, and view available sauces all tailored to your local city.
postmates.com API
Browse and search Postmates restaurants to discover menus, items, and detailed restaurant information all in one place. Get category suggestions, view complete menus, and access specific item details to find exactly what you're looking for.
chownow.com API
Search for nearby restaurants, view their operating hours and delivery zones, and browse complete menus with all items, modifiers, and prices. Access detailed restaurant information and locations to find exactly what you're looking for on the ChowNow marketplace.
ubereats.com API
Search for restaurants by cuisine or location and browse their menus, prices, ratings, and delivery times. Get detailed information about specific restaurants and menu items to find exactly what you want to order.
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.
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.
Denny's API – Locations & Menu Data · Parse