1. Order Related
Shanjing Ecommerce Api
🇺🇸 English
  • latest
  • 🇺🇸 English
  • Access Guide
    • Platform Overview
    • Become a Developer
  • Taobao & Tmall API
    • Authentication
      • Obtain Token
      • Refresh Token
    • Product Related
      • Taobao/Tmall Product Details API
      • Taobao/Tmall Product Keyword Search Interface
      • Taobao/Tmall Image Search for Similar Products Interface
      • Upload image to Taobao/Tmall for product search
    • Order Related
      • Taobao/Tmall Collision Database Interface
        GET
      • Taobao/Tmall Pre-create Order Interface
        POST
      • Taobao/Tmall Order Cancellation Interface
        POST
      • Taobao/Tmall Official Order Creation Interface
        POST
      • Taobao/Tmall Order Query Interface
        GET
  1. Order Related

Taobao/Tmall Collision Database Interface

GET
/rest/taobao-global/product/get
Product detail search interface, which needs to be called before previewing products and creating orders, to obtain mpId and mpSkuid

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://ecommerce-api.shanjing-inc.com/rest/taobao-global/product/get?item_source_market=CBU_MARKET&item_id=652876415053' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "success": true,
    "failItems": "string",
    "errorCode": "string",
    "errorMsg": "string",
    "data": {
        "quantity": 0,
        "categoryPath": "string",
        "shopName": "string",
        "description": "string",
        "productUnit": "string",
        "picUrls": [
            "string"
        ],
        "title": "string",
        "mpId": "string",
        "categoryName": "string",
        "itemId": 0,
        "userNick": "string",
        "price": 0,
        "beginAmount": 0,
        "status": "string",
        "skuList": [
            {
                "picUrl": "string",
                "quantity": 0,
                "price": 0,
                "skuId": "string",
                "properties": [
                    {
                        "valueId": 0,
                        "valueName": "string",
                        "propId": 0,
                        "propName": "string"
                    }
                ],
                "status": "string",
                "promotionPrice": 0,
                "postFee": 0,
                "mpSkuId": 0,
                "couponPrice": 0
            }
        ],
        "promotionPrice": 0,
        "shopId": 0,
        "categoryId": "string",
        "itemType": "string",
        "couponPrice": 0,
        "itemPromotionDisplayList": [
            {
                "name": "string",
                "itemPromotionDisplayInfoList": [
                    {
                        "code": "string",
                        "name": "string"
                    }
                ]
            }
        ]
    }
}
🟢200Failed
Modified at 2026-03-14 06:46:03
Previous
Upload image to Taobao/Tmall for product search
Next
Taobao/Tmall Pre-create Order Interface
Built with