# Monster Energy — 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.

> Search through Monster Energy drink options available in New Zealand and view detailed information like flavour profiles, nutritional content (sugar and caffeine levels), descriptions, and product images for each drink. Perfect for finding your next favorite Monster flavor with complete transparency on what's in each can.

**Category:** Food & Dining | **Website:** [www.monsterenergy.com/en-nz/energy-drinks/juice-monster/](https://www.monsterenergy.com/en-nz/energy-drinks/juice-monster/) | **Docs:** [parse.bot/marketplace/f35030dc-e9b2-4359-a0ba-f338b4ddef2b/monsterenergy-com-api](https://parse.bot/marketplace/f35030dc-e9b2-4359-a0ba-f338b4ddef2b/monsterenergy-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-monsterenergy-com-api-f35030dc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_drink

Retrieve full details for a specific Monster Energy drink by its category and slug. Returns name, flavour profile, description, sugar and caffeine levels, serving size, and a transparent .webp can image URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Product category slug. |
| `slug` | string | Yes | Product slug from the URL path (e.g. mango-loco, zero-ultra, original-green). Obtainable from list_drinks results. |

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

### list_categories

Retrieve all product category slugs and display names from the Monster Energy NZ energy drinks navigation. Returns a flat list of categories available for filtering in list_drinks and get_drink.

**Estimated cost:** Metered

_No parameters required._

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

### list_drinks

Retrieve all Monster Energy drinks available in New Zealand with full details including name, flavour profile, description, nutritional info (sugar, caffeine, serving size), and a transparent .webp can image URL. Optionally filter by category. Each drink is fetched individually for complete detail; the full catalog is ~14 items.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter by product category slug. |

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