Discover/AliExpress API
live

AliExpress APIaliexpress.com

Search AliExpress products, fetch details, read customer reviews, and browse categories via a structured JSON API. 5 endpoints, no scraping setup needed.

Endpoint health
verified 14h ago
get_product_details
search_products
get_product_reviews
get_product_by_url
get_categories
5/5 passing latest checkself-healing
Endpoints
5
Updated
22d ago

What is the AliExpress API?

The AliExpress API provides 5 endpoints to search product listings, retrieve product details by ID or URL, read paginated customer reviews, and fetch the top-level category tree. The search_products endpoint returns up to 60 products per page including price, rating, order count, and seller name. It handles the full discovery-to-detail workflow without requiring any AliExpress account or session management.

Try it
Page number for pagination.
Search keyword (e.g. 'wireless earbuds', 'phone case').
Sort order for results.
api.parse.bot/scraper/f989ff95-1fce-426d-935d-2b3787e3f343/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f989ff95-1fce-426d-935d-2b3787e3f343/search_products?page=1&query=wireless+earbuds&sort_by=best_match' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace aliexpress-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""AliExpress SDK walkthrough: search, drill into details, read reviews."""
from parse_apis.aliexpress_api import AliExpress, Sort, ProductNotFound

client = AliExpress()

# Search for products sorted by orders — limit= caps total items fetched.
for item in client.productsummaries.search(query="wireless earbuds", sort_by=Sort.ORDERS, limit=5):
    print(item.title, item.price, item.rating)

# Drill into the first result's full detail via the nav op.
first = client.productsummaries.search(query="phone case", limit=1).first()
if first:
    detail = first.details()
    print(detail.name, detail.aliexpress_url, len(detail.images))

    # Walk reviews for this product.
    for review in first.reviews.list(limit=3):
        print(review.reviewer_name, review.rating, review.review_text[:60])

# Fetch a product directly by ID.
try:
    product = client.products.get(product_id="3256811621288203")
    print(product.name, product.images[0])
except ProductNotFound as exc:
    print(f"Product gone: {exc}")

# Browse top-level categories.
for cat in client.categories.list(limit=5):
    print(cat.id, cat.name, cat.icon)

print("exercised: productsummaries.search / details / reviews.list / products.get / categories.list")
All endpoints · 5 totalmissing one? ·

Full-text search over AliExpress product listings. Returns up to 60 products per page with pricing, ratings, and sales data. Sorting controls result ordering; pagination via page number. Some products may have null prices depending on seller configuration.

Input
ParamTypeDescription
pageintegerPage number for pagination.
queryrequiredstringSearch keyword (e.g. 'wireless earbuds', 'phone case').
sort_bystringSort order for results.
Response
{
  "type": "object",
  "fields": {
    "total": "integer, number of products returned on this page",
    "products": "array of product objects with product_id, title, price, original_price, rating, orders_desc, thumbnail_url, product_url, seller_name"
  },
  "sample": {
    "data": {
      "total": 60,
      "products": [
        {
          "price": 19.43,
          "title": "【 Pro 3 】 Bluetooth noise cancelling wireless earphones",
          "rating": 4.9,
          "product_id": "3256811621288203",
          "orders_desc": "3,000+ sold",
          "product_url": "https://www.aliexpress.com/item/3256811621288203.html",
          "seller_name": null,
          "thumbnail_url": "https://ae-pic-a1.aliexpress-media.com/kf/Se8d10822ef0740c5987a3ba1522f6e77Z.png",
          "original_price": 49.65
        }
      ]
    },
    "status": "success"
  }
}

About the AliExpress API

Search and Product Lookup

The search_products endpoint accepts a query string and optional sort_by parameter with five accepted values: best_match, orders, price_asc, price_desc, and newest. Each product object in the response includes product_id, title, price, original_price, rating, orders_desc, thumbnail_url, product_url, and seller_name. Pagination is controlled via the page parameter.

To get deeper detail on a single item, use get_product_details with a numeric product_id. The response includes name, an images array, product_id, and aliexpress_url. Additional fields — cost, rating, reviews_count, and seller_name — may also appear depending on the product. If you have a full product URL rather than an ID, get_product_by_url accepts the URL directly and returns the same shape, making it useful when working from links rather than search results.

Reviews and Categories

get_product_reviews takes a product_id and optional page number, returning a reviews array where each object contains reviewer_name, rating, review_text, review_date, sku_info, country, and images. The response also includes total_reviews (total count across all pages) and average_rating (out of 5). This is sufficient to build review aggregation, sentiment analysis pipelines, or purchase validation tools.

The get_categories endpoint takes no inputs and returns the top-level AliExpress category tree as an array of objects with id, name, and icon URL. This is useful for populating navigation, mapping category IDs to search queries, or auditing category coverage.

Reliability & maintenanceVerified

The AliExpress API is a managed, monitored endpoint for aliexpress.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when aliexpress.com 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 aliexpress.com 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.

Last verified
14h ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a price comparison tool using search_products with price_asc and price_desc sort to surface cheapest and most expensive listings for a keyword.
  • Aggregate customer review data with get_product_reviews to analyze ratings by country or SKU variant.
  • Populate a product catalog from AliExpress search results including thumbnails, prices, and seller names.
  • Validate supplier listings by cross-referencing orders_desc and average_rating from search and review endpoints.
  • Convert AliExpress product URLs to structured JSON using get_product_by_url for browser extension or link-processing workflows.
  • Map the AliExpress category tree with get_categories to organize or filter product discovery by category ID.
  • Track original vs. discounted pricing by comparing price and original_price fields in search results.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does AliExpress have an official developer API?+
Yes. AliExpress offers the AliExpress Open Platform API (developers.aliexpress.com), which provides affiliate and order management endpoints. However, it requires partner approval and is oriented toward affiliate programs rather than general product data access.
What does `get_product_details` return compared to `search_products`?+
search_products returns a broad set of fields across many products — title, price, thumbnail, order count, seller name — suitable for listing pages. get_product_details returns a name, full images array, product_id, and aliexpress_url for a single item, with cost, rating, reviews_count, and seller_name available as conditional fields. It does not currently return variant or specification data like color options or shipping info.
Are seller details or store pages covered by the API?+
Not currently. The API returns seller_name as part of search results and optionally in product detail responses, but there are no endpoints for seller profiles, store catalogs, or seller feedback scores. You can fork this API on Parse and revise it to add a seller or store endpoint.
How does review pagination work?+
get_product_reviews returns a reviews array for one page at a time. The total_reviews field tells you the full count so you can calculate how many pages to request. Use the page parameter to step through them. Review images and sku_info (the variant the reviewer purchased) are included per review object.
Does the API cover product variants, like sizes or colors?+
Not currently. The get_product_details and get_product_by_url endpoints return name, images, and URL-level data, with some conditional pricing and rating fields. Variant-level data (SKU options, stock per variant) is not exposed. You can fork this API on Parse and revise it to add variant extraction from product pages.
Page content last updated . Spec covers 5 endpoints from aliexpress.com.
Related APIs in MarketplaceSee all →
dhgate.com API
Search DHgate's vast marketplace to find products across all categories, view detailed information including pricing tiers, shipping options, and seller ratings, and discover flash deals. Retrieve full product details and customer reviews in one place.
banggood.com API
Search Banggood products and retrieve detailed information including prices, specifications, and customer reviews to help you discover items and make informed purchasing decisions. Perfect for monitoring inventory, comparing products, and staying updated on what's available across Banggood's catalog.
ozon.ru API
Access data from ozon.ru.
daraz.pk API
Browse and extract product data from Daraz Pakistan (daraz.pk). Search products by keyword or category, retrieve full product details, explore the category tree, and list all products for a given seller.
alternate.be API
Search for products on Alternate Belgium and instantly access live prices, stock availability, technical specifications, customer reviews, and current deals across their entire catalog. Browse their complete category structure to find exactly what you need and compare products before making a purchase decision.
lightinthebox.com API
Browse and discover products across categories on LightInTheBox, search for items, view detailed product information and customer reviews, and check out current flash sale deals. Find exactly what you're looking for with comprehensive product catalogs and real-time pricing updates.
mercadolibre.com API
Search and retrieve product listings, details, customer reviews, categories, and current deals from MercadoLibre across multiple countries to find the best products and prices. Get comprehensive product information including specifications and user feedback to make informed purchasing decisions.
zalando.it API
Browse and extract product data from Zalando Italy, including search results, category listings, and full product detail pages.