# Lamomeplage — 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 the menu, location details, and content pages for La Môme Plage, a Mediterranean beach restaurant in Cannes, directly through their website's data. Discover the restaurant's offerings and site structure to plan your visit or integrate their information into your own application.

**Category:** Food & Dining | **Website:** [lamomeplage.com/](https://lamomeplage.com/) | **Docs:** [parse.bot/marketplace/c2d94288-0468-4dc9-8da1-e56f9c29dd7e/lamomeplage-com-api](https://parse.bot/marketplace/c2d94288-0468-4dc9-8da1-e56f9c29dd7e/lamomeplage-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-lamomeplage-com-api-c2d94288/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_page_content

Retrieves the full content of a specific page by its numeric WordPress ID or slug. Returns extracted text content, links, and images parsed from the page HTML. Either page_id or slug must be provided; page_id takes precedence if both are supplied.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page_id` | string | No | Numeric WordPress page ID (e.g. '4894' for Nos Cartes, '9869' for Accueil, '10369' for Les Restaurants). Takes precedence over slug if both provided. |
| `slug` | string | No | URL slug of the page. Known slugs: nos-cartes, accueil, les-restaurants, notre-histoire, diners-prives-evenementiel, contact, presse, mentions-legales, politique-de-confidentialite. Used when page_id is not provided. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lamomeplage-com-api-c2d94288/get_page_content \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page_id":"<string>","slug":"<string>"}'
```

### list_pages

Lists all published pages on the site. Returns the navigation menu structure with page titles, slugs, links, and modification dates. Single-page response containing every published page.

**Estimated cost:** Metered

_No parameters required._

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