caesars.com APIcaesars.com ↗
Access Caesars Entertainment property data, amenities, fees, casino games, live jackpots, and promotions via 7 structured API endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/7ae4c463-ecb7-4231-9b43-e563162a5737/list_destinations' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve all Caesars Entertainment destination locations/markets. Returns an array of destinations with IDs, names, URLs, and geographic coordinates.
No input parameters required.
{
"type": "object",
"fields": {
"destinations": "array of destination objects containing id, name, url, summary, bookingUrl, isSearchable, thumbnail, location coordinates"
},
"sample": {
"data": {
"destinations": [
{
"id": "lvm",
"url": "https://www.caesars.com/las-vegas",
"name": "Las Vegas, NV",
"summary": "Find the best deals on hotels, show tickets, restaurants and more from Total Vegas.",
"location": {
"latitude": 36.11621,
"longitude": -115.174484
},
"bookingUrl": "https://www.caesars.com/reserve/?regionCode=lvm",
"isSearchable": true
}
]
},
"status": "success"
}
}About the caesars.com API
The Caesars Entertainment API covers 7 endpoints that expose hotel property listings, destination markets, amenity details, fees, online casino games, live jackpot amounts, and current promotions across Caesars properties. The get_property_details endpoint returns structured fee schedules, payment types, highlights, and booking policy data for specific properties like Caesars Palace (clv) or Caesars Atlantic City (cac). Regional online casino data is available for New Jersey, Michigan, Pennsylvania, and West Virginia.
Property and Destination Data
list_destinations returns every Caesars Entertainment market with IDs, names, URLs, geographic coordinates, and thumbnail images. list_properties builds on this with a full array of hotel summaries — including brand, market code, address, phone, check-in/out times, isBookable flag, and location coordinates. These two endpoints together give a complete inventory of the Caesars hotel portfolio without requiring any input parameters.
Per-Property Detail
get_property_details accepts a property_id string (e.g., clv for Caesars Palace Las Vegas, cac for Caesars Atlantic City) and returns a structured object covering fee schedules (fees.items), categorized amenity lists (hotelInfo.items), property highlights, accepted payment types, and whyBookDirect benefit descriptions. Note that not every property ID returned by list_properties is supported by this endpoint — only a subset of IDs resolves to a full detail response.
Online Casino Endpoints
Three endpoints cover the online gaming side of the business. get_casino_games accepts an optional state parameter (nj, mi, pa, wv) and returns a paginated array of game objects plus a total count. get_jackpots returns live jackpot amounts tied to the same four states, with a responseTimestamp field indicating data freshness. get_promotions requires no inputs and returns an entries array of current bonus offers spanning casino and sportsbook products. list_regions enumerates which states have active online casino configurations.
Coverage Notes
Online casino game and jackpot data is limited to states where Caesars has a licensed online gaming operation: New Jersey, Michigan, Pennsylvania, and West Virginia. Hotel data reflects Caesars Entertainment-branded and affiliated properties; independent or partner properties may not appear. The isBookable and isSearchable flags on property objects indicate which listings support direct booking flows.
- Build a hotel comparison tool using address, check-in/out times, and fee data from
get_property_details - Map all Caesars destination markets using latitude/longitude coordinates from
list_destinations - Display live jackpot ticker widgets using
get_jackpotswith per-state filtering - Aggregate current casino and sportsbook promotions for a deal-alert application via
get_promotions - Filter bookable properties from the
list_propertiesresponse using theisBookablefield - Enumerate available online casino states and their configurations using
list_regions - Surface accepted payment types and fee schedules for a travel planning tool using
get_property_details
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Caesars Entertainment have an official public developer API?+
Which property IDs work with `get_property_details`?+
list_properties resolves to a full detail response. Confirmed working IDs include clv (Caesars Palace Las Vegas) and cac (Caesars Atlantic City). If a given property ID returns no data, that property likely does not have a detailed record available through this endpoint.Does the casino games endpoint cover all US states?+
get_casino_games and get_jackpots support only four states: New Jersey (nj), Michigan (mi), Pennsylvania (pa), and West Virginia (wv) — the states where Caesars holds an active online gaming license. States like New York or Arizona are not currently covered. You can fork this API on Parse and revise it to add additional states if Caesars expands its online gaming footprint.Does the API return room rates or availability data?+
How fresh is the jackpot data from `get_jackpots`?+
get_jackpots includes a responseTimestamp field that indicates when the data was last updated. Jackpot amounts reflect near-real-time values, but the exact refresh interval is not guaranteed and may vary by state.