Lazada Open Platform API

Commercial

by Lazada (Alibaba Group)

Seller APIs for Lazada Singapore covering products, orders, logistics, finance and data, using Alibaba-style signed requests. The other must-have marketplace integration for SG e-commerce tooling.

How to authenticate

  1. 1Register at open.lazada.com and create an app to get app key and secret.
  2. 2Have the seller authorize via the Lazada auth URL; exchange the code for access_token via /auth/token/create.
  3. 3Sign every request: HMAC-SHA256 over the sorted parameter string with your app secret (sign param).
  4. 4Use the country-specific endpoint (api.lazada.sg for Singapore).
  5. 5Refresh tokens before the (roughly weekly) expiry via /auth/token/refresh.

Example request

Request
curl 'https://api.lazada.sg/rest/orders/get?app_key=KEY&timestamp=TS&access_token=TOKEN&sign_method=sha256&sign=SIGN&created_after=2026-07-01T00:00:00+08:00'

Example response

Response (truncated)
{"code":"0","data":{"count":2,"orders":[{"order_id":123456789,"statuses":["pending"],"price":"59.90"}]}}

Notes for AI agents

Signature is over alphabetically sorted params concatenated with the API path; a single unsorted param breaks it. Each Lazada country is a separate endpoint and seller authorization.

Machine-readable version: /api/apis/lazada-open-platform

Related APIs