Makeup API
Overview
The Makeup API is a free, open database of cosmetic products including lipsticks, foundations, eyeshadows, and more. You can search by product type, brand, price range, or tags without needing any authentication or API key. It is a great beginner-friendly API for building beauty apps or practicing API integration.
Beginner Tip
Try filtering by product_type=lipstick or brand=maybelline to get a focused set of results — the API returns rich product data including price, color, and image URLs.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Makeup",
"description": "Makeup Information",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
id Unique identifier for the product. name Name of the makeup product. brand Brand name of the product (e.g., Maybelline, L'Oreal). product_type Category of the product such as lipstick, foundation, or blush. price Retail price of the product as a string (e.g., "7.99"). image_link URL to the product image. Implementation Example
const url = "http://makeup-api.herokuapp.com/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Coronavirus
This Coronavirus API provides the latest global Covid-19 case counts, deaths, and recoveries aggregated from public health sources.
Coronavirus in the UK
The Coronavirus in the UK API provides official UK Government data on Covid-19 cases, deaths, and vaccinations broken down by region and nation.
Covid Tracking Project
⭐ Beginner's PickThe Covid Tracking Project API provides historical US Covid-19 data including tests, hospitalizations, and deaths at the state and national level.
Covid-19
Covid-19 provides programmatic access to covid 19 spread, infection and recovery via REST API.
Covid-19
⭐ Beginner's PickThe Covid-19 API by M-Media Group provides daily case counts, deaths, and recoveries for every country in the world.