Discover/drinkhint API
live

drinkhint APIdrinkhint.com

Access Hint Water product catalog data via API. Search products, retrieve full details, and list collections including still, sparkling, and variety packs.

This API takes change requests — .
Endpoint health
verified 6d ago
search_products
get_product
list_collection
3/3 passing latest checkself-healing
Endpoints
3
Updated
6d ago

What is the drinkhint API?

The drinkhint.com API exposes 3 endpoints covering Hint Water's full product catalog, including search, individual product detail, and collection browsing. The get_product endpoint returns up to 10 response fields per product — including variants, images, tags, and pricing — while list_collection supports paginated access to named collections like 'sparkling-water' and 'variety-packs'.

Try it
Maximum number of products to return. Capped at 10 by the upstream search API.
Search query text to find products.
api.parse.bot/scraper/46e5e0ea-070b-439b-b073-4d8c53f52830/<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/46e5e0ea-070b-439b-b073-4d8c53f52830/search_products?limit=5&query=lemon' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Search for Hint water products by keyword. Returns up to 10 matching products with pricing and availability. Uses the site's predictive search and matches against product titles, descriptions, and tags.

Input
ParamTypeDescription
limitintegerMaximum number of products to return. Capped at 10 by the upstream search API.
querystringSearch query text to find products.
Response
{
  "type": "object",
  "fields": {
    "count": "integer",
    "query": "string",
    "products": "array of product summaries"
  },
  "sample": {
    "count": 5,
    "query": "lemon",
    "products": [
      {
        "id": 7243649515623,
        "url": "/products/hint%C2%AE-water-variety-pack-star-spangled?_pos=1&_psq=lemon&_ss=e&_v=1.0",
        "image": "https://cdn.shopify.com/s/files/1/0014/3015/9418/files/variety-pack-star-spangled.png?v=1773941740",
        "price": "22.99",
        "title": "hint® water variety pack - Star Spangled",
        "handle": "hint®-water-variety-pack-star-spangled",
        "vendor": "hint water",
        "available": true,
        "price_max": "22.99",
        "price_min": "22.99",
        "product_type": "16oz bottle"
      }
    ]
  }
}

About the drinkhint API

What the API Covers

This API provides structured access to Hint Water's product catalog at drinkhint.com. It covers three operations: keyword search via search_products, full product detail retrieval via get_product, and paginated collection browsing via list_collection. All three endpoints return product data including titles, handles, variants, and images.

Endpoint Details

search_products accepts a query string and an optional limit (capped at 10). It matches against product titles, descriptions, and tags, and returns a count, the echoed query, and an array of product summaries. Use this to find product handles for follow-up calls.

get_product takes a handle — the URL slug identifying a product, such as watermelon-hint-water — and returns the full product record: id, title, vendor, product_type, body_html description, tags, published_at, an images array with image objects, and a variants array containing pricing and availability data.

list_collection accepts a collection handle (e.g. still-bottles, sparkling-water, variety-packs, bundles, or all), a 1-based page integer, and a limit between 1 and 250. It returns a paginated array of product summaries alongside count, page, limit, and collection fields. Use all to iterate the full catalog.

Source and Freshness

Drinkhint.com does not publish a documented public developer API. Data reflects the live product catalog as listed on the site. Product availability, pricing, and variant options are sourced from the active storefront and reflect what a visitor would see at the time of the request.

Reliability & maintenanceVerified

The drinkhint API is a managed, monitored endpoint for drinkhint.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when drinkhint.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 drinkhint.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
6d ago
Latest check
3/3 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 price tracker that monitors Hint Water variant prices across still, sparkling, and can formats using get_product variant data.
  • Populate an affiliate product feed by iterating list_collection with the 'all' collection handle and paginating through the full catalog.
  • Implement a product search widget that queries search_products by flavor keyword and displays matching results with images and pricing.
  • Generate a flavor availability index by extracting tags and product_type fields from all products in a collection.
  • Sync Hint Water SKU and variant data into an internal inventory or e-commerce management system using variants array fields.
  • Audit product descriptions and metadata by pulling body_html and tags across the full catalog via list_collection.
  • Compare bundle and variety-pack pricing against individual unit prices using the variants field from get_product.
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 drinkhint.com have an official developer API?+
No. Drinkhint.com does not publish a documented public developer API. This Parse API provides structured access to its product catalog data.
What does the `get_product` endpoint return, and how do I get the handle?+
It returns the full product record: id, title, vendor, product_type, body_html, tags, published_at, an images array, and a variants array with pricing and availability. The handle is the URL slug for the product (e.g. watermelon-hint-water) and is available in results from both search_products and list_collection.
What collections can I browse with `list_collection`?+
Known collection handles include all, still-bottles, still-cans, sparkling-water, variety-packs, and bundles. Use all to paginate the complete catalog. The limit parameter accepts values between 1 and 250 per page.
Does the API return customer reviews or ratings for Hint Water products?+
Not currently. The API covers product metadata, variants, images, tags, and descriptions. It does not expose customer reviews or ratings. You can fork this API on Parse and revise it to add an endpoint targeting review data.
Is search limited to 10 results?+
Yes — search_products returns a maximum of 10 products per request, regardless of the limit parameter. To browse more of the catalog, use list_collection with pagination, which supports up to 250 products per page.
Page content last updated . Spec covers 3 endpoints from drinkhint.com.
Related APIs in EcommerceSee all →
walmart.com API
Retrieve product data from Walmart.com including pricing, descriptions, availability, reviews, and category listings. Access real-time product information to search by keyword, look up items by ID or URL, and browse department categories.
ikea.com API
Search and browse IKEA's full product catalog to find items by category, compare measurements, read customer reviews, and check real-time store availability and current deals. Discover new arrivals and best-selling products to help you shop smarter and find exactly what you need.
homedepot.com API
Search and browse Home Depot's product catalog to compare pricing, check real-time availability, and review detailed product specifications. Find products across all categories, look up store locations and hours, and check fulfillment options including in-store pickup and delivery.
amazon.co.uk API
Access data from amazon.co.uk.
idealo.de API
Search for products on Idealo.de and retrieve detailed information including current seller offers, price history, technical specifications, and user and expert reviews. Compare prices across sellers and access comprehensive product data to evaluate deals.
target.com API
Search for products across Target's catalog and instantly check real-time in-store availability at nearby Target locations using your zipcode. Find exactly what you're looking for and discover which stores have it in stock, so you can shop smarter and faster.
asos.com API
Search and browse ASOS's fashion catalog to discover products across women's and men's categories, view real-time pricing and stock information, and find trending or sale items. Get detailed product information, explore similar items, and discover new arrivals and brands all in one place.
amazon.in API
Search for products on Amazon India and retrieve detailed information including search suggestions, product details, and bestseller listings. Get instant autocomplete recommendations and access comprehensive product data to compare prices and features across the Indian marketplace.