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 Keyword Search Interface

GET
/rest/taobao-global/traffic/item/search
Please use Chinese keywords for search, search results support translation into multiple languages

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 --globoff 'https://ecommerce-api.shanjing-inc.com/rest/taobao-global/traffic/item/search?excludeFilters=used_item&excludeFilters=customized_item&keyword=%E5%B8%BD%E5%AD%90&include_tags=[%0A%20%20%20%20%22activity_202311_1_tb_manjian%22%0A]&sort=PRICE_DESC&page_no=1&page_size=20&filters=activity_202311_1_tb_manjian&language=en&shop_id=200' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "errorCode": "string",
    "errorMsg": "string",
    "data": {
        "data": [
            {
                "tbItemId": 0,
                "mainImageUrl": "string",
                "price": "string",
                "inventory": 0,
                "tagList": [
                    "string"
                ],
                "shopName": "string",
                "title": "string",
                "materialI18nVO": {
                    "language": "string",
                    "title": "string",
                    "mainImage": "string"
                },
                "couponPrice": "string",
                "promotionDisplayVOList": [
                    {
                        "name": "string",
                        "itemPromotionDisplayInfoVOList": [
                            {
                                "code": "string",
                                "name": "string"
                            }
                        ]
                    }
                ]
            }
        ],
        "pageNo": 0,
        "pageSize": 0
    }
}
🟢200Failed
Modified at 2026-03-14 06:46:03
Previous
Taobao/Tmall Product Details API
Next
Taobao/Tmall Image Search for Similar Products Interface
Built with