1. Product 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
        GET
      • Taobao/Tmall Product Keyword Search Interface
        GET
      • Taobao/Tmall Image Search for Similar Products Interface
        GET
      • Upload image to Taobao/Tmall for product search
        POST
    • Order Related
      • Taobao/Tmall Collision Database Interface
      • Taobao/Tmall Pre-create Order Interface
      • Taobao/Tmall Order Cancellation Interface
      • Taobao/Tmall Official Order Creation Interface
      • Taobao/Tmall Order Query Interface
  1. Product Related

Taobao/Tmall Product Details API

GET
/rest/taobao-global/traffic/item/get
Pass the Taobao/Tmall product ID to get product details, supports multi-language translation.

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/traffic/item/get?item_resource=taobao&item_id=600231131&include_tags=activity_202311_1_tb_manjian&language=en' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "errorCode": "string",
    "errorMsg": "string",
    "data": {
        "itemResource": "string",
        "itemId": 0,
        "title": "string",
        "picUrls": [
            "string"
        ],
        "shopName": "string",
        "price": 0,
        "promotionPrice": 0,
        "description": "string",
        "properties": [
            {
                "propId": 0,
                "propName": "string",
                "valueId": 0,
                "valueName": "string"
            }
        ],
        "skuList": [
            {
                "skuId": 0,
                "quantity": 0,
                "price": 0,
                "promotionPrice": 0,
                "picUrl": "string",
                "properties": [
                    {
                        "propId": 0,
                        "propName": "string",
                        "valueId": 0,
                        "valueName": "string",
                        "valueDesc": "string"
                    }
                ],
                "couponPrice": 0
            }
        ],
        "shopId": 0,
        "propertyImageList": [
            {
                "properties": "string",
                "imageUrl": "string"
            }
        ],
        "tagList": [
            "string"
        ],
        "materialI18nVO": {
            "title": "string",
            "properties": [
                {
                    "propertyId": 0,
                    "propertyText": "string",
                    "valueId": 0,
                    "valueText": "string",
                    "valueDescription": "string"
                }
            ],
            "skuProperties": [
                {
                    "skuId": 0,
                    "properties": [
                        {
                            "propertyId": 0,
                            "propertyText": "string",
                            "valueId": 0,
                            "valueText": "string",
                            "valueDescription": "string"
                        }
                    ]
                }
            ],
            "language": "string",
            "mainImage": "string"
        },
        "couponPrice": 0,
        "promotionDisplayVOList": [
            {
                "name": "string",
                "itemPromotionDisplayInfoVOList": [
                    {
                        "code": "string",
                        "name": "string"
                    }
                ]
            }
        ],
        "categoryId": "string",
        "categoryName": "string",
        "categoryPath": "string"
    }
}
🟢200Failed
Modified at 2026-03-14 06:46:03
Previous
Refresh Token
Next
Taobao/Tmall Product Keyword Search Interface
Built with