Makeup
Makeup — Makeup Information
Makeup exposes makeup Information We verified a keyless GET endpoint returning JSON (Health). Check the provider docs for rate limits and terms before production use.
GET http://makeup-api.herokuapp.com/api/v1/products.json?brand=maybelline
[
{
"id": 495,
"brand": "maybelline",
"name": "Maybelline Face Studio Master Hi-Light Light Booster Bronzer",
"price": "14.99",
"price_sign": null,
"currency": null,
"image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/991799d3e70b8856686979f8ff6dcfe0_ra,w158,h184_pa,w158,h184.png",
"product_link": "https://well.ca/products/maybelline-face-studio-master_88837.html"
},
{
"id": 488,
"brand": "maybelline",
"name": "Maybelline Fit Me Bronzer",
"price": "10.29",
"price_sign": null,
"currency": null,
"image_link": "https://d3t32hsnjxo7q6.cloudfront.net/i/d4f7d82b4858c622bb3c1cef07b9d850_ra,w158,h184_pa,w158,h184.png",
"product_link": "https://well.ca/products/maybelline-fit-me-bronzer_31265.html"
}
]curl "http://makeup-api.herokuapp.com/api/v1/products.json?brand=maybelline"const res = await fetch("http://makeup-api.herokuapp.com/api/v1/products.json?brand=maybelline");
const data = await res.json();
console.log(data);import requests
res = requests.get("http://makeup-api.herokuapp.com/api/v1/products.json?brand=maybelline")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/api/v1/products.json?brand=maybellinePROBEDMakeup — Makeup Information
/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/v1/products.json?limit=5Products Json — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Makeup: common questions
Is Makeup free to use?
Yes — Makeup 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 Makeup need an API key?
No — Makeup needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Makeup from the browser?
Not directly — Makeup 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 Makeup up right now?
As of our last scheduled check, Makeup is healthy with 99.02% uptime over 90 days and a 791 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.