Discover/Alibaba API
live

Alibaba APIin19067452907ubjs.trustpass.alibaba.com

Access product categories, listings with pricing and images, and detailed specs from an Alibaba supplier store via 3 structured JSON endpoints.

This API takes change requests — .
Endpoint health
verified 2h ago
list_categories
list_products
get_product_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
3h ago

What is the Alibaba API?

This API provides structured access to an Alibaba supplier store specializing in color diamonds, covering 3 endpoints that return the full category tree, paginated product listings with pricing and images, and detailed per-product data including SKU attributes, seller information, and review summaries. The get_product_details endpoint alone returns over 10 distinct fields, including sku_prices, sku_attributes, and reviews.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/2f9e0e66-a3c8-46ca-b955-d558622fde99/<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/2f9e0e66-a3c8-46ca-b955-d558622fde99/list_categories' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Returns the full product category tree for the store. Each category has an ID, name, and optional children subcategories. Category IDs can be used with list_products to filter by category.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "categories": "array of category objects with id, name, url, and optional children"
  },
  "sample": {
    "data": {
      "categories": [
        {
          "id": 911804179,
          "url": "/productgrouplist-911804179/LAB_GROWN_CERTIFIED_DIAMONDS.html",
          "name": "LAB GROWN CERTIFIED DIAMONDS",
          "children": [
            {
              "id": 912102119,
              "url": "/productgrouplist-912102119/ROUND_BRILLIANT_CUT.html",
              "name": "ROUND BRILLIANT CUT"
            },
            {
              "id": 911592865,
              "url": "/productgrouplist-911592865/OVAL_CUT_DIAMOND.html",
              "name": "OVAL CUT DIAMOND"
            }
          ]
        },
        {
          "id": 911832919,
          "url": "/productgrouplist-911832919/COLOR_DIAMOND.html",
          "name": "COLOR DIAMOND"
        }
      ]
    },
    "status": "success"
  }
}

About the Alibaba API

Category and Product Navigation

The list_categories endpoint returns the complete category tree for the store, with each entry carrying an id, name, url, and optional nested children. These category IDs feed directly into list_products via the category_id parameter, letting you scope results to a specific subcategory such as a particular diamond cut or clarity grade.

Product Listings

The list_products endpoint returns up to 16 products per page. You control pagination with the page integer parameter and optionally narrow results with category_id. The response envelope includes total, current_page, page_size, category_name, and an array of product objects, each containing id, title, price, and image. When no category_id is supplied, the endpoint returns all products sorted by last modified date.

Detailed Product Data

The get_product_details endpoint accepts a product_id (numeric string obtained from list_products) and returns the full product record. Key fields include sku_attributes (variant dimensions such as color, cut, and clarity), sku_prices (a map from SKU combination keys to price info), images (array of image URLs), seller (name, country, membership years), reviews (average_rating and total_count), and both a formatted price string and a numeric price_value. The unit field indicates the pricing unit, such as carat or piece.

Reliability & maintenanceVerified

The Alibaba API is a managed, monitored endpoint for in19067452907ubjs.trustpass.alibaba.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when in19067452907ubjs.trustpass.alibaba.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 in19067452907ubjs.trustpass.alibaba.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
2h ago
Latest check
3/3 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
  • Compare per-carat pricing across SKU variants using sku_prices and sku_attributes from get_product_details
  • Build a category-browsing interface by consuming the nested tree from list_categories
  • Monitor price changes over time by polling list_products sorted by last modified date
  • Aggregate seller trust signals by extracting seller.membership_years and reviews.average_rating across multiple products
  • Paginate through the full product catalog using the page parameter and the total field from list_products
  • Filter diamond listings by a specific grade category using category_id values from list_categories
  • Enrich product records with full image galleries by combining list_products IDs with get_product_details images arrays
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 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.

Frequently asked questions
Does Alibaba offer an official developer API for supplier store data?+
Alibaba does have a developer platform at open.alibaba.com with APIs for certain commerce operations, but access to individual supplier store catalogs, SKU-level pricing, and per-product reviews through that platform is restricted and typically requires a business partnership agreement. This Parse API covers those fields directly.
What does `get_product_details` return beyond basic price and title?+
In addition to price and title, the endpoint returns sku_attributes (variant dimensions like color, cut, and clarity), sku_prices (a keyed map of SKU combinations to price info), an images array, a seller object with country and membership years, a reviews object with average_rating and total_count, a numeric price_value, and a unit field indicating how the price is measured (e.g. carat or piece).
Does `list_products` support sorting or filtering beyond category?+
Currently, list_products supports filtering by category_id and pagination via page. Without a category filter, results are sorted by last modified date. Sorting by price, rating, or sales volume is not covered. You can fork this API on Parse and revise it to add additional sort or filter parameters.
Are buyer contact details or order history available through this API?+
No buyer or transaction data is exposed. The API covers product catalog data: categories, listings, SKU variants, seller metadata, and review summaries. You can fork it on Parse and revise to add any adjacent supplier-side endpoint if that data becomes accessible.
How many products does `list_products` return per request, and is there a way to get more?+
Each page returns up to 16 products, reflected in the page_size field. To retrieve more, increment the page parameter and use the total field in the response to determine how many pages exist for a given category or the full catalog.
Page content last updated . Spec covers 3 endpoints from in19067452907ubjs.trustpass.alibaba.com.
Related APIs in MarketplaceSee all →
aliexpress.com API
Search for products across AliExpress and instantly access detailed information including product specs, customer reviews, and pricing to make informed purchasing decisions. Browse through product categories and retrieve complete product data directly from URLs to compare options and find exactly what you're looking for.
alibaba.com API
Search for ready-to-ship products on Alibaba.com with full pagination support to browse inventory, pricing, and product details across multiple pages. Quickly discover available items without waiting for manufacturing timelines.
globalsources.com API
Search Global Sources for products and suppliers, then fetch related product info and a supplier’s latest product listings using product IDs and organization IDs.
1688.com API
Search for wholesale products on 1688.com using images or find detailed information about specific items including pricing, specifications, and supplier details. Discover bulk sourcing opportunities and compare products directly from Alibaba's Chinese B2B marketplace.
detail.1688.com API
Retrieve comprehensive product data from 1688.com product pages, including titles, images, pricing, SKU variants, attributes, seller details, packing specifications, and drop-shipping information — no login required.
item.taobao.com API
Retrieve detailed product information including pricing, images, and weight specifications directly from Taobao listings to compare products and make informed purchasing decisions. Access comprehensive product data from world.taobao.com to streamline your shopping research and product analysis.
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.
s.1688.com API
Search for wholesale products on 1688.com and retrieve detailed information including pricing, specifications, and customer reviews. Access comprehensive product data to compare suppliers and make informed purchasing decisions on China's leading B2B marketplace.