@@ -16044,6 +16044,165 @@ paths:
1604416044 - TikTok
1604516045 x-accepts:
1604616046 - application/json
16047+ /v1/tiktok/shop/categories:
16048+ get:
16049+ description: "Top-level TikTok Shop categories (US). Drill down with /shop/categories/{category_id}."
16050+ operationId: tiktok_tiktok_shop_root_categories
16051+ responses:
16052+ "200":
16053+ content:
16054+ application/json:
16055+ schema: {}
16056+ description: Successful Response
16057+ security:
16058+ - ApiKeyAuth: []
16059+ summary: TikTok Shop root categories
16060+ tags:
16061+ - TikTok
16062+ x-accepts:
16063+ - application/json
16064+ /v1/tiktok/shop/categories/{category_id}:
16065+ get:
16066+ description: A category's subcategories and its top products as TikTok Shop
16067+ ranks them (US).
16068+ operationId: tiktok_tiktok_shop_category_subcategories_top_products
16069+ parameters:
16070+ - explode: false
16071+ in: path
16072+ name: category_id
16073+ required: true
16074+ schema:
16075+ title: Category Id
16076+ type: string
16077+ style: simple
16078+ responses:
16079+ "200":
16080+ content:
16081+ application/json:
16082+ schema: {}
16083+ description: Successful Response
16084+ "422":
16085+ content:
16086+ application/json:
16087+ schema:
16088+ $ref: '#/components/schemas/HTTPValidationError'
16089+ description: Validation Error
16090+ security:
16091+ - ApiKeyAuth: []
16092+ summary: "TikTok Shop category: subcategories + top products"
16093+ tags:
16094+ - TikTok
16095+ x-accepts:
16096+ - application/json
16097+ /v1/tiktok/shop/products/{product_id}:
16098+ get:
16099+ description: |-
16100+ Full TikTok Shop product page (US): description, images, price, SKUs with stock, reviews,
16101+ shop and TikTok's AI summary.
16102+ operationId: tiktok_tiktok_shop_product_detail
16103+ parameters:
16104+ - explode: false
16105+ in: path
16106+ name: product_id
16107+ required: true
16108+ schema:
16109+ title: Product Id
16110+ type: string
16111+ style: simple
16112+ responses:
16113+ "200":
16114+ content:
16115+ application/json:
16116+ schema: {}
16117+ description: Successful Response
16118+ "422":
16119+ content:
16120+ application/json:
16121+ schema:
16122+ $ref: '#/components/schemas/HTTPValidationError'
16123+ description: Validation Error
16124+ security:
16125+ - ApiKeyAuth: []
16126+ summary: TikTok Shop product detail
16127+ tags:
16128+ - TikTok
16129+ x-accepts:
16130+ - application/json
16131+ /v1/tiktok/shop/ranking:
16132+ get:
16133+ description: TikTok Shop's own ranking of the best-selling products of the past
16134+ 30 days (US).
16135+ operationId: tiktok_tiktok_shop_best_sellers
16136+ parameters:
16137+ - description: Max products to return
16138+ explode: true
16139+ in: query
16140+ name: count
16141+ required: false
16142+ schema:
16143+ default: 20
16144+ description: Max products to return
16145+ maximum: 50
16146+ minimum: 1
16147+ title: Count
16148+ type: integer
16149+ style: form
16150+ responses:
16151+ "200":
16152+ content:
16153+ application/json:
16154+ schema: {}
16155+ description: Successful Response
16156+ "422":
16157+ content:
16158+ application/json:
16159+ schema:
16160+ $ref: '#/components/schemas/HTTPValidationError'
16161+ description: Validation Error
16162+ security:
16163+ - ApiKeyAuth: []
16164+ summary: TikTok Shop best sellers
16165+ tags:
16166+ - TikTok
16167+ x-accepts:
16168+ - application/json
16169+ /v1/tiktok/shop/search:
16170+ get:
16171+ description: |-
16172+ Keyword search over TikTok Shop products (US): products with their bound video, matching
16173+ shops, related searches and categories.
16174+ operationId: tiktok_search_tiktok_shop_products
16175+ parameters:
16176+ - description: "Keyword, e.g. 'wireless earbuds'"
16177+ explode: true
16178+ in: query
16179+ name: q
16180+ required: true
16181+ schema:
16182+ description: "Keyword, e.g. 'wireless earbuds'"
16183+ minLength: 1
16184+ title: Q
16185+ type: string
16186+ style: form
16187+ responses:
16188+ "200":
16189+ content:
16190+ application/json:
16191+ schema: {}
16192+ description: Successful Response
16193+ "422":
16194+ content:
16195+ application/json:
16196+ schema:
16197+ $ref: '#/components/schemas/HTTPValidationError'
16198+ description: Validation Error
16199+ security:
16200+ - ApiKeyAuth: []
16201+ summary: Search TikTok Shop products
16202+ tags:
16203+ - TikTok
16204+ x-accepts:
16205+ - application/json
1604716206 /v1/tiktok/trending/hashtags:
1604816207 get:
1604916208 description: Get trending hashtags (mobile Discover surface — view_count + creators).
0 commit comments