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.
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 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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
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?
Makeup 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.