Bevwire API
Bevwire API — The Bevwire API provides access to various beverage-rel…
Bevwire API exposes the Bevwire API provides access to various beverage-related information, including product details, nutrition facts, and availability. It allows developers to integrate beverage data into their applications seamlessly. We verified a keyless GET endpoint returning JSON (Food & Drink). Check the provider docs for rate limits and terms before production use.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://bevwire.com/api/companies/search?q=milam&limit=3"
{
"query": "milam",
"companies": [
{
"slug": "milam-greene-whiskey",
"name": "Milam & Greene Whiskey",
"articleCount": 3,
"articles": [
{
"title": "Milam & Greene Releases Live Oak Bourbon, Adds to Wildlife Collection",
"path": "/spirits/industry-press/milam-greene-releases-live-oak-bourbon-adds-to-wildlife-coll",
"url": "https://bevwire.com/spirits/industry-press/milam-greene-releases-live-oak-bourbon-adds-to-wildlife-coll"
},
{
"title": "Milam & Greene Whiskey Wins Texas Festival People’s Choice Gold After Recount",
"path": "/spirits/industry-press/milam-greene-whiskey-wins-texas-festival-peoples-choice-gold",
"url": "https://bevwire.com/spirits/industry-press/milam-greene-whiskey-wins-texas-festival-peoples-choice-gold"
}
]
}
]
}curl "https://bevwire.com/api/companies/search?q=milam&limit=3""const res = await fetch("https://bevwire.com/api/companies/search?q=milam&limit=3"");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://bevwire.com/api/companies/search?q=milam&limit=3"")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/api/companies/search?q=milam&limit=3"PROBEDBevwire API — The Bevwire API provides access to various beverage-rel…
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/companies/search?limit=5Search by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Bevwire API: common questions
Is Bevwire API free to use?
Yes — Bevwire API is a free health & food API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Bevwire API need an API key?
No — Bevwire API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Bevwire API from the browser?
Not directly — Bevwire API doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Bevwire API up right now?
Bevwire API is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.