1. 订单相关
Shanjing Ecommerce Api
latest
  • latest
  • 🇺🇸 English
  • 接入指南
    • 平台概述
    • 成为开发者
  • 淘宝&天猫 API
    • 鉴权
      • 获取 Token
      • 刷新 Token
    • 商品相关
      • 获取淘宝/天猫商品详情接口
      • 淘宝/天猫商品关键词搜索接口
      • 淘宝/天猫图片搜索同款商品接口
      • 上传图片到淘宝/天猫用于图搜商品
    • 订单相关
      • 淘宝/天猫撞库接口
        GET
      • 淘宝/天猫预创建订单接口
        POST
      • 淘宝/天猫正式创建订单接口
        POST
      • 淘宝/天猫取消订单接口
        POST
      • 淘宝/天猫查询订单接口
        GET
  1. 订单相关

淘宝/天猫撞库接口

GET
/rest/taobao-global/product/get
商品详情搜索接口,在调用预览商品与创建订单接口时,需先调用该接口,获得mpId与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

🟢200成功
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"
                    }
                ]
            }
        ]
    }
}
🟢200接口异常错误
Modified at 2026-03-14 05:37:03
Previous
上传图片到淘宝/天猫用于图搜商品
Next
淘宝/天猫预创建订单接口
Built with