NEWME APInewme.asia ↗
Access NEWME Asia product listings via API. Search by keyword, filter by category, size, and sort order. Returns pricing, ratings, colors, and delivery info.
What is the NEWME API?
The NEWME Asia API exposes one endpoint — search_products — that returns up to 30 product listings per page from newme.asia, a fast-fashion e-commerce platform. Each product object includes at least 10 fields: id, name, slug, category, pricing, rating, sizes, colors, fabric, and delivery info. You can filter by keyword, category, and size simultaneously, or browse all products by omitting the query parameter.
curl -X GET 'https://api.parse.bot/scraper/b89aac0c-f196-484d-8345-3d7f58e57af8/search_products?query=dress&sort_by=menu_order' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for product listings on NEWME by keyword. Returns paginated results (30 products per page) with product details including pricing, sizes, colors, ratings, and delivery info. Supports filtering by category, size, and sorting by various criteria. When query is empty, returns all products matching the applied filters.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. Each page returns up to 30 products. |
| size | string | Comma-separated size filter (e.g. 'S', 'M,L', 'XS,S,M'). Standard sizes include XXS, XS, S, M, L, XL, XXL and numeric sizes 24-36. |
| query | string | Search keyword (e.g. 'dress', 'tops', 'jeans'). When omitted, returns all products matching other filters. |
| sort_by | string | Sort order for results. Defaults to popularity when omitted. |
| category | string | Filter by product category (e.g. 'dresses', 'tops', 'bottoms', 'jewellery', 'co-ords', 'bags', 'lingerie', 'swimwear', 'accessories'). Omit to search across all categories. |
{
"type": "object",
"fields": {
"products": "array of product objects with id, name, slug, category, pricing, rating, sizes, colors, fabric, and delivery info",
"total_count": "total number of products matching the search",
"total_pages": "total number of pages available",
"current_page": "current page number"
},
"sample": {
"data": {
"products": [
{
"name": "Light Pink Floral Maxi Dress",
"slug": "light-pink-floral-maxi-dress-32",
"rating": "4.8",
"category": "dresses",
"image_url": "https://assets.newme.asia/wp-content/uploads/2026/08/11142803a793ab2e/NM-IN-56-DRS-26-MAY-34013-LIGHTPINK(0).webp",
"product_id": 11577826,
"sale_price": 1299,
"subcategory": "maxi",
"rating_count": "24",
"regular_price": 1599,
"color_variants": [
{
"color": "Lightpink",
"hex_code": [
"#FFB6C1"
],
"product_id": 11577826
},
{
"color": "Yellow",
"hex_code": [
"#FFFF00"
],
"product_id": 11142523
}
],
"fabric_quality": "GEORGETTE",
"sizes_available": [
"XS",
"S",
"M",
"L",
"XL"
],
"fast_delivery_text": "3 - 5 days",
"normal_delivery_text": "12 - 14 days"
}
],
"total_count": 669,
"total_pages": 23,
"current_page": 1
},
"status": "success"
}
}About the NEWME API
What the API Returns
The search_products endpoint returns paginated product listings from NEWME, a Singapore-based fast-fashion retailer. Each page contains up to 30 items. The response includes products (an array of product objects), total_count (total matching products), total_pages, and current_page for pagination control.
Product Object Fields
Each product object carries: id, name, slug, category, pricing details, rating, available sizes, colors, fabric type, and delivery info. The sizes field covers standard sizing including XXS, XS, S, M, L, XL, and XXL. Pricing reflects what is shown on the NEWME product listing at the time of the request.
Filtering and Sorting
The query parameter accepts keyword strings such as 'dress', 'tops', or 'jeans'. When query is omitted, the endpoint returns all products matching any other active filters. The category parameter accepts values like 'dresses', 'tops', 'bottoms', 'jewellery', 'co-ords', 'bags', and 'lingerie'. The size parameter accepts comma-separated values (e.g. 'S,M,L'). The sort_by parameter controls ordering and defaults to popularity when not specified. Pagination is controlled via the page parameter.
The NEWME API is a managed, monitored endpoint for newme.asia — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when newme.asia 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 newme.asia 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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Aggregate NEWME pricing data alongside other fast-fashion retailers for price comparison tools
- Build size-specific product feeds by filtering results with the
sizeparameter - Monitor product availability and inventory signals across NEWME categories
- Populate affiliate shopping apps with NEWME product names, slugs, and pricing
- Analyze fast-fashion trend data by querying category and sorting by popularity
- Feed product rating data into review aggregation dashboards for Asian fashion platforms
- Track catalog depth in specific categories like 'co-ords' or 'lingerie' using
categoryfiltering
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 req/min |
Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does NEWME have an official developer API?+
What does the `search_products` endpoint return when no query keyword is provided?+
query parameter is omitted, the endpoint returns all products matching any other active filters such as category or size. This makes it useful for browsing entire category listings or size-specific catalogs without a text search term.Does the API return individual product detail pages, such as full descriptions or multiple product images?+
What are the pagination limits for `search_products`?+
total_count and total_pages fields so you can determine how many additional pages exist for a given query. Use the page parameter to step through results.