# Caesars — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Browse Caesars Entertainment properties and online casino offerings to discover destinations, view property details, check available games, track live jackpots, and explore current promotions. Access comprehensive information across multiple regions to plan your casino visit or explore gaming options.

**Category:** Travel | **Website:** [caesars.com/](https://caesars.com/) | **Docs:** [parse.bot/marketplace/f7d94ba3-20c6-402a-b1b6-6b706e73031d/caesars-com-api](https://parse.bot/marketplace/f7d94ba3-20c6-402a-b1b6-6b706e73031d/caesars-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-caesars-com-api-f7d94ba3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_casino_games

Retrieve online casino games for a specific state (nj, mi, pa, wv).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `state` | string | No | State code (nj, mi, pa, wv). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-caesars-com-api-f7d94ba3/get_casino_games \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"state":"<string>"}'
```

### get_jackpots

Retrieve live jackpot amounts for games in a specific state.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `state` | string | No | State code (nj, mi, pa, wv). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-caesars-com-api-f7d94ba3/get_jackpots \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"state":"<string>"}'
```

### get_promotions

Retrieve current bonus offers and promotions for online casino and sportsbook.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-caesars-com-api-f7d94ba3/get_promotions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_property_details

Get detailed hotel information about a specific Caesars property including fees, amenities, payment types, highlights, and booking policies. Requires a property_id from list_properties results. Not all properties support this endpoint; properties like 'clv' (Caesars Palace) and 'cac' (Caesars Atlantic City) are known to work. Returns upstream_error for unsupported IDs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `property_id` | string | Yes | Property ID from list_properties results (e.g. 'clv' for Caesars Palace, 'cac' for Caesars Atlantic City, 'nor' for Caesars New Orleans). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-caesars-com-api-f7d94ba3/get_property_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"property_id":"<string>"}'
```

### list_destinations

Retrieve all Caesars Entertainment destination locations/markets. Returns an array of destinations with IDs, names, URLs, geographic coordinates, and booking URLs. Each destination represents a geographic market (e.g. Las Vegas, Atlantic City) containing multiple properties.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-caesars-com-api-f7d94ba3/list_destinations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_properties

Retrieve all Caesars Entertainment hotel properties. Returns an array of property summaries including ID, name, brand, market code, address, phone, check-in/out times, booking status, facts, location, and summary description. Properties span multiple markets and brands.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-caesars-com-api-f7d94ba3/list_properties \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_regions

List available online casino states and their configurations.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-caesars-com-api-f7d94ba3/list_regions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
