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

淘宝/天猫商品关键词搜索接口

GET
/rest/taobao-global/traffic/item/search
请使用中文关键词进行搜索,搜索结果支持翻译成多语言

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/search?excludeFilters=used_item&excludeFilters=customized_item&keyword=%E5%B8%BD%E5%AD%90&include_tags=activity_202311_1_tb_manjian&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

🟢200成功
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
    }
}
🟢200接口异常错误
Modified at 2026-03-14 05:37:03
Previous
获取淘宝/天猫商品详情接口
Next
淘宝/天猫图片搜索同款商品接口
Built with