Discover/Monster Energy API
live

Monster Energy APImonsterenergy.com

Retrieve Monster Energy drink data for New Zealand: names, flavour profiles, sugar/caffeine levels, serving sizes, and transparent can images via 2 endpoints.

This API takes change requests — .
Endpoint health
verified 3h ago
list_drinks
get_drink
2/2 passing latest checkself-healing
Endpoints
2
Updated
3h ago

What is the Monster Energy API?

The Monster Energy NZ API provides 2 endpoints to browse and look up Monster Energy drinks available in New Zealand, returning up to 9 fields per product including name, flavour profile, description, sugar and caffeine content, serving size, and a transparent .webp can image URL. Use list_drinks to retrieve the full catalogue with optional category filtering, or get_drink to fetch a single product by its slug.

This call costs1 credit / call— charged only on success
Try it
Filter by product category slug.
api.parse.bot/scraper/76d65545-6071-4ce2-8c4f-9df3cd6915d8/<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/76d65545-6071-4ce2-8c4f-9df3cd6915d8/list_drinks?category=monster-energy' \
  -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 monsterenergy-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: Monster Energy NZ SDK — bounded, re-runnable; every call capped."""
from parse_apis.monsterenergy_com_api import MonsterEnergy, Category, DrinkNotFound

client = MonsterEnergy()

# List all drinks, capped at 3
for drink in client.drinks.list(limit=3):
    print(drink.name, drink.flavor_profile, drink.caffeine, drink.sugar)

# Filter by category
for drink in client.drinks.list(category=Category.JUICE_MONSTER, limit=3):
    print(drink.name, drink.can_image_url)

# Get a specific drink by slug and category
item = client.drinks.list(category=Category.MONSTER_ULTRA, limit=1).first()
try:
    detail = client.drinks.get(slug=item.slug, category=item.category)
    print(detail.name, detail.flavor_profile, detail.description)
except DrinkNotFound as e:
    print(f"not found: {e.slug}")

print("exercised: drinks.list, drinks.get")
All endpoints · 2 totalmissing one? ·

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.

Input
ParamTypeDescription
categorystringFilter by product category slug.
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of drinks returned",
    "drinks": "array of drink objects with full details"
  },
  "sample": {
    "data": {
      "total": 14,
      "drinks": [
        {
          "name": "Juice Monster Mango Loco",
          "slug": "mango-loco",
          "sugar": "60 g",
          "caffeine": "150 mg",
          "category": "juice-monster",
          "description": "Juice Monster's Mango Loco uses real mango juice powered by our energy blend for a refreshing juice with energy.",
          "serving_size": "500 ml",
          "can_image_url": "https://web-assests.monsterenergy.com/mnst/3f8d5be1-d198-4c68-be7b-735b4bd58c9d.webp",
          "flavor_profile": "Juicy Mango"
        }
      ]
    },
    "status": "success"
  }
}

About the Monster Energy API

What the API returns

Both endpoints return product data sourced from the Monster Energy New Zealand catalogue. Each drink object includes name, slug, category, description, flavor_profile, sugar, caffeine, serving_size, and can_image_url. Nutritional fields (sugar, caffeine, serving_size) are returned as formatted strings (e.g. '60 g', '150 mg', '500 ml') or null when not listed on the product page.

Endpoints

list_drinks accepts an optional category parameter (a category slug string) to narrow results to a specific product line such as juice-monster or zero-ultra. It returns a total count alongside a drinks array of full drink objects. get_drink requires both a slug (e.g. mango-loco, original-green) and a category slug, and returns the complete detail object for that single product. Slugs needed for get_drink are obtainable from the list_drinks response.

Coverage and scope

The API covers the New Zealand regional catalogue on monsterenergy.com. Product availability, names, and nutritional figures reflect what is published for the NZ market, which may differ from other regional Monster Energy sites. The can_image_url field points to a transparent .webp image suitable for display in product grids or comparison tools.

Reliability & maintenanceVerified

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

Last verified
3h ago
Latest check
2/2 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 product catalogue UI displaying Monster Energy cans with their transparent .webp images and flavour profiles
  • Compare sugar and caffeine content across all NZ Monster Energy variants using the sugar and caffeine fields
  • Filter products by category slug to display only juice-based or zero-sugar Monster lines
  • Populate a nutritional database with serving size, sugar, and caffeine data for energy drink tracking apps
  • Generate a product lookup tool that resolves a drink slug to its full description and flavour profile
  • Audit which NZ Monster Energy products omit caffeine or sugar disclosures by checking for null nutritional fields
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 Monster Energy have an official developer API?+
Monster Energy does not publish a public developer API or documented data feed. This API provides structured access to product data from the New Zealand section of monsterenergy.com.
What does `list_drinks` return and how does the category filter work?+
Without a category parameter, list_drinks returns all available NZ drinks as an array of full drink objects plus a total count. Passing a category string (e.g. juice-monster) limits results to products in that category. Category slugs correspond to the product line sections on the Monster Energy NZ site.
Are sugar and caffeine values always present in the response?+
No. The sugar, caffeine, and serving_size fields return null when the product page does not list that information. You should handle null values when building any nutritional comparison logic.
Does the API cover Monster Energy products from regions outside New Zealand?+
Not currently. The API is scoped to the New Zealand catalogue on monsterenergy.com. Products sold in the US, UK, Australia, or other markets are not included. You can fork this API on Parse and revise it to target a different regional URL to add coverage for another market.
Does the API return pricing or retailer availability for Monster Energy drinks?+
Not currently. The API returns product details — name, description, flavour profile, nutritional fields, and can image — but no pricing or stockist data is exposed. You can fork this API on Parse and revise it to add an endpoint targeting any retailer listing page that carries Monster Energy products.
Page content last updated . Spec covers 2 endpoints from monsterenergy.com.
Related APIs in Food DiningSee all →
smoothieking.com API
Browse Smoothie King's complete menu by category, look up detailed nutrition facts for every smoothie and enhancer, and find nearby store locations. Get comprehensive nutritional information to make informed choices about your smoothie order.
lacroixwater.com API
Browse all LaCroix sparkling water flavors and get detailed information like pricing, stock availability, and product images for any flavor. Find exactly what you need to compare options and check what's in stock before you shop.
monster.com API
Search and retrieve job listings from Monster.com. Supports keyword and location-based search with structured results including job descriptions, salary ranges, company info, and employment details. Also provides access to popular job categories.
bluebottlecoffee.com API
Browse Blue Bottle Coffee's complete product catalog, including roast levels, tasting notes, pricing, and customer reviews. List products by category, retrieve full details for any item, and explore cafe locations across all supported regions.
danmurphys.com.au API
Browse Dan Murphy's beer listings and retrieve product names, prices, package sizes, and alcohol percentages.
thecocktaildb.com API
Discover and explore thousands of cocktail recipes by searching by name, ingredient, category, or glass type, plus get random drink suggestions and detailed information about cocktail components. Filter drinks by whether they're alcoholic or non-alcoholic, and browse complete lists of available categories, glasses, and ingredients.
chemistwarehouse.co.nz API
Search for medications and health products at Chemist Warehouse NZ, browse categories, view detailed product information, and find nearby store locations. Get access to product pricing, descriptions, and store addresses all in one place.
medicalcouncil.org.nz API
Search for registered doctors in New Zealand by name, location, specialty, and professional status, then access their detailed profiles including qualifications and scope of practice. Use this to verify practitioner credentials and find healthcare professionals that match your needs.