Alibaba Search API
Search Alibaba by keyword and get up to 25 wholesale listings (title, price range, minimum order, and supplier) in one normalized response.
Try it
Make your first request
{
"data": {
"items": [
{
"countryCode": "US",
"image": "https://example.com/image.jpg",
"moq": "example",
"priceText": "A short example description of this item.",
"promotionPrice": "19.99",
"rating": 4.6,
"reviewCount": 12500,
"supplierName": "Example title",
"supplierYears": "example",
"title": "Example title",
"url": "https://example.com/page"
}
]
},
"found": true
}interface AlibabaSearchResponse {
data: {
items: {
countryCode?: string;
image?: string;
moq?: string;
priceText?: string;
promotionPrice?: string;
rating?: number;
reviewCount?: number;
supplierName?: string;
supplierYears?: string;
title: string;
url: string;
}[];
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/alibaba.search \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"limit":3,"query":"bluetooth speaker"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| query | string | "bluetooth speaker"Keywords to search for on Alibaba (e.g. "bluetooth speaker wholesale"). |
| limit | integer | 3Maximum number of results to return (1-25, default 25). You are billed per result returned, so a lower limit costs less. |
| Response | ||
| data | object | Search result wrapper, or null when nothing matched. |
| data.items | object[] | Matching Alibaba wholesale listings. Populated whenever the provider has data for the entity. |
| data.items[].countryCode | string | Supplier country ISO code, e.g. "CN". |
| data.items[].image | string | Primary product image URL. |
| data.items[].moq | string | Minimum order quantity text, e.g. "Min. order: 1 piece". |
| data.items[].priceText | string | Price or price range as displayed, e.g. "$40.80-45.80" (Alibaba lists ranges, not a single numeric value). |
| data.items[].promotionPrice | string | Discounted promotional price when the listing is on sale; empty otherwise. |
| data.items[].rating | number | Average buyer review score, 0-5; 0 when the listing has no reviews. |
| data.items[].reviewCount | integer | Number of buyer reviews; 0 when none. |
| data.items[].supplierName | string | Supplier / company name. |
| data.items[].supplierYears | string | Gold Supplier tenure text, e.g. "3 yrs"; empty when not a Gold Supplier. |
| data.items[].title | string | Listing title as shown on Alibaba (may contain the supplier's inline markup). Populated whenever the provider has data for the entity. |
| data.items[].url | string | Canonical product detail page URL (tracking query params stripped). Populated whenever the provider has data for the entity. |
| found | boolean | True when the search returned at least one listing. |
| Price | ||
| Price per request (ceiling) | USD | $0.022 |
| Price /1k results | USD | $0.88 |
FAQ
About the Alibaba Search API
The AnyAPI Alibaba Search API returns Alibaba search data as normalized JSON from one POST call to /v1/run/alibaba.search. Search Alibaba by keyword and get up to 25 wholesale listings (title, price range, minimum order, and supplier) in one normalized response. AnyAPI returns one normalized schema whichever source serves it. It costs $0.88 per 1,000 results, and never more than $0.022 for a single request, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Alibaba search calls through AnyAPI succeeded, with a median response time of 8.5 seconds across 32 measured calls.