|
13304 | 13304 | ] |
13305 | 13305 | } |
13306 | 13306 | }, |
| 13307 | + "/api/taobao/get-item-detail/v6": { |
| 13308 | + "get": { |
| 13309 | + "description": "Retrieves Taobao or Tmall product details by item ID through the V6 endpoint. Use it to perform direct product lookup for catalog research, product monitoring, or ecommerce analysis.", |
| 13310 | + "operationId": "getApiTaobaoGetItemDetailV6", |
| 13311 | + "parameters": [ |
| 13312 | + { |
| 13313 | + "description": "Access token for this API service.", |
| 13314 | + "in": "query", |
| 13315 | + "name": "token", |
| 13316 | + "required": true, |
| 13317 | + "schema": { |
| 13318 | + "type": "string" |
| 13319 | + } |
| 13320 | + }, |
| 13321 | + { |
| 13322 | + "description": "Unique product identifier on Taobao/Tmall (item ID).", |
| 13323 | + "in": "query", |
| 13324 | + "name": "itemId", |
| 13325 | + "required": true, |
| 13326 | + "schema": { |
| 13327 | + "type": "string" |
| 13328 | + } |
| 13329 | + } |
| 13330 | + ], |
| 13331 | + "responses": { |
| 13332 | + "200": { |
| 13333 | + "content": { |
| 13334 | + "application/json": { |
| 13335 | + "schema": { |
| 13336 | + "$ref": "#/components/schemas/Result" |
| 13337 | + } |
| 13338 | + } |
| 13339 | + }, |
| 13340 | + "description": "OK" |
| 13341 | + }, |
| 13342 | + "400": { |
| 13343 | + "$ref": "#/components/responses/ResultBadRequestResponse" |
| 13344 | + }, |
| 13345 | + "401": { |
| 13346 | + "$ref": "#/components/responses/ResultUnauthorizedResponse" |
| 13347 | + }, |
| 13348 | + "403": { |
| 13349 | + "$ref": "#/components/responses/ResultForbiddenResponse" |
| 13350 | + }, |
| 13351 | + "429": { |
| 13352 | + "$ref": "#/components/responses/ResultTooManyRequestsResponse" |
| 13353 | + }, |
| 13354 | + "500": { |
| 13355 | + "$ref": "#/components/responses/ResultInternalServerErrorResponse" |
| 13356 | + } |
| 13357 | + }, |
| 13358 | + "summary": "Product Details", |
| 13359 | + "tags": [ |
| 13360 | + "Taobao and Tmall" |
| 13361 | + ], |
| 13362 | + "x-api-version": "v6", |
| 13363 | + "x-endpoint-family": "taobao_get_item_detail", |
| 13364 | + "x-highlights": [ |
| 13365 | + { |
| 13366 | + "aliases": [ |
| 13367 | + "product coverage", |
| 13368 | + "supported products", |
| 13369 | + "商品覆盖", |
| 13370 | + "支持商品" |
| 13371 | + ], |
| 13372 | + "concept": "product_coverage", |
| 13373 | + "content": "Some products may not be available through this endpoint.", |
| 13374 | + "kind": "CONDITION", |
| 13375 | + "type": "tip" |
| 13376 | + } |
| 13377 | + ], |
| 13378 | + "x-order": "11001350", |
| 13379 | + "x-search-aliases": [ |
| 13380 | + "Taobao product details v6", |
| 13381 | + "Tmall item detail lookup v6", |
| 13382 | + "Taobao item information API v6", |
| 13383 | + "淘宝商品详情 V6", |
| 13384 | + "天猫商品详情查询 V6", |
| 13385 | + "淘宝商品 ID 查询 V6" |
| 13386 | + ] |
| 13387 | + } |
| 13388 | + }, |
13307 | 13389 | "/api/taobao/get-item-detail/v9": { |
13308 | 13390 | "get": { |
13309 | 13391 | "description": "Retrieves Taobao or Tmall product details by item ID through the V9 endpoint. Use it to perform direct product lookup for catalog research, product monitoring, or ecommerce analysis.", |
|
19715 | 19797 | ] |
19716 | 19798 | } |
19717 | 19799 | }, |
| 19800 | + "/api/xiaohongshu-ec/search-products/v1": { |
| 19801 | + "get": { |
| 19802 | + "description": "Searches Xiaohongshu E-commerce (RedNote) products by keyword with page and search-ID pagination; pages after the first require the search ID returned by the initial search. Use it to discover marketplace products and continue through multi-page results.", |
| 19803 | + "operationId": "getApiXiaohongshuEcSearchProductsV1", |
| 19804 | + "parameters": [ |
| 19805 | + { |
| 19806 | + "description": "Authentication token for this API service.", |
| 19807 | + "in": "query", |
| 19808 | + "name": "token", |
| 19809 | + "required": true, |
| 19810 | + "schema": { |
| 19811 | + "type": "string" |
| 19812 | + } |
| 19813 | + }, |
| 19814 | + { |
| 19815 | + "description": "Search keyword.", |
| 19816 | + "in": "query", |
| 19817 | + "name": "keyword", |
| 19818 | + "required": true, |
| 19819 | + "schema": { |
| 19820 | + "type": "string" |
| 19821 | + } |
| 19822 | + }, |
| 19823 | + { |
| 19824 | + "description": "Page number, starting from 1.", |
| 19825 | + "in": "query", |
| 19826 | + "name": "page", |
| 19827 | + "required": false, |
| 19828 | + "schema": { |
| 19829 | + "type": "string" |
| 19830 | + } |
| 19831 | + }, |
| 19832 | + { |
| 19833 | + "description": "Search ID returned by the first-page response; required when page is greater than 1.", |
| 19834 | + "in": "query", |
| 19835 | + "name": "searchId", |
| 19836 | + "required": false, |
| 19837 | + "schema": { |
| 19838 | + "default": "", |
| 19839 | + "type": "string" |
| 19840 | + } |
| 19841 | + } |
| 19842 | + ], |
| 19843 | + "responses": { |
| 19844 | + "200": { |
| 19845 | + "content": { |
| 19846 | + "application/json": { |
| 19847 | + "schema": { |
| 19848 | + "$ref": "#/components/schemas/Result" |
| 19849 | + } |
| 19850 | + } |
| 19851 | + }, |
| 19852 | + "description": "OK" |
| 19853 | + }, |
| 19854 | + "400": { |
| 19855 | + "$ref": "#/components/responses/ResultBadRequestResponse" |
| 19856 | + }, |
| 19857 | + "401": { |
| 19858 | + "$ref": "#/components/responses/ResultUnauthorizedResponse" |
| 19859 | + }, |
| 19860 | + "403": { |
| 19861 | + "$ref": "#/components/responses/ResultForbiddenResponse" |
| 19862 | + }, |
| 19863 | + "429": { |
| 19864 | + "$ref": "#/components/responses/ResultTooManyRequestsResponse" |
| 19865 | + }, |
| 19866 | + "500": { |
| 19867 | + "$ref": "#/components/responses/ResultInternalServerErrorResponse" |
| 19868 | + } |
| 19869 | + }, |
| 19870 | + "summary": "Product Search", |
| 19871 | + "tags": [ |
| 19872 | + "Xiaohongshu E-commerce (RedNote)" |
| 19873 | + ], |
| 19874 | + "x-api-version": "v1", |
| 19875 | + "x-endpoint-family": "xiaohongshu_ec_search_products", |
| 19876 | + "x-highlights": [], |
| 19877 | + "x-order": "12501000", |
| 19878 | + "x-search-aliases": [ |
| 19879 | + "Xiaohongshu ecommerce product search", |
| 19880 | + "RedNote product search", |
| 19881 | + "Xiaohongshu marketplace keyword search", |
| 19882 | + "小红书电商商品搜索", |
| 19883 | + "小红书商城关键词搜索", |
| 19884 | + "小红书商品查询" |
| 19885 | + ] |
| 19886 | + } |
| 19887 | + }, |
19718 | 19888 | "/api/xiaohongshu-pgy/api/pgy/content_square/search_note_v2/v1": { |
19719 | 19889 | "get": { |
19720 | 19890 | "description": "Search Xiaohongshu Pugongying Content Square notes by keyword or browse all notes, with business-category, ranking, time-window, and page controls. Use it to discover high-performing campaign content.", |
|
25355 | 25525 | ], |
25356 | 25526 | "x-platform-id": "xiaohongshu-creator-marketplace-pugongying" |
25357 | 25527 | }, |
| 25528 | + { |
| 25529 | + "description": "Xiaohongshu E-commerce product search for discovering marketplace products by keyword.", |
| 25530 | + "name": "Xiaohongshu E-commerce (RedNote)", |
| 25531 | + "x-platform-aliases": [ |
| 25532 | + "Xiaohongshu E-commerce", |
| 25533 | + "RedNote E-commerce", |
| 25534 | + "Xiaohongshu product search", |
| 25535 | + "RedNote product search", |
| 25536 | + "小红书电商", |
| 25537 | + "小红书商品搜索" |
| 25538 | + ], |
| 25539 | + "x-platform-detection-aliases": [ |
| 25540 | + "Xiaohongshu E-commerce", |
| 25541 | + "RedNote E-commerce", |
| 25542 | + "Xiaohongshu product search", |
| 25543 | + "RedNote product search", |
| 25544 | + "小红书电商", |
| 25545 | + "小红书商品搜索" |
| 25546 | + ], |
| 25547 | + "x-platform-id": "xiaohongshu-e-commerce-rednote" |
| 25548 | + }, |
25358 | 25549 | { |
25359 | 25550 | "description": "Xianyu second-hand marketplace listings and details for resale research, seller analysis, and price monitoring.", |
25360 | 25551 | "name": "Xianyu (GooFish)", |
|
25727 | 25918 | "x-platform-id": "1688" |
25728 | 25919 | } |
25729 | 25920 | ], |
25730 | | - "x-openapi-release-id": "ffd6ee7ddfb6588c" |
| 25921 | + "x-openapi-release-id": "6fa69ce241e6a00e" |
25731 | 25922 | } |
0 commit comments