> ## Documentation Index
> Fetch the complete documentation index at: https://docs.keyapi.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Product Detail

> Retrieve real-time product details from TikTok Shop, including title, price, inventory, ratings, and seller information.

<div className="inline-flex items-center gap-2 px-4 py-2 bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg">
  <span className="text-base">🪙</span>
  <span className="text-sm font-medium text-yellow-900 dark:text-yellow-100"><span className="font-semibold">2 credits</span><span className="text-yellow-700 dark:text-yellow-300 ml-1">per request</span></span>
</div>

## Copy for AI

<div className="my-6 rounded-xl border border-gray-200 bg-gray-50 p-5 dark:border-gray-800 dark:bg-gray-900/40">
  <div className="min-w-0">
    <p className="text-base font-semibold text-gray-900 dark:text-gray-100">🤖 Why Code When AI Can Do It For You?</p>
    <p className="mt-1 text-sm text-gray-700 dark:text-gray-300">Stop writing code like it's 1970! Let AI do the heavy lifting - click the sparkles to copy a perfectly formatted prompt for ChatGPT, Claude, or your favorite AI assistant.</p>
  </div>

  <div className="mt-4">
    <button
      type="button"
      className="inline-flex items-center gap-2 rounded-md border border-emerald-300 bg-emerald-50 px-3 py-2 text-sm font-medium text-emerald-800 hover:bg-emerald-100 dark:border-emerald-700 dark:bg-emerald-900/30 dark:text-emerald-100 dark:hover:bg-emerald-900/50"
      onClick={() => navigator.clipboard.writeText(`I want to make an API call to https://api.keyapi.ai/v1/tiktok/product/detail.

Please help me write code to make this API call and handle the response appropriately. Include error handling and best practices.

Here are the details:

Endpoint: GET https://api.keyapi.ai/v1/tiktok/product/detail

Description: Retrieve real-time product details from TikTok Shop, including title, price, inventory, ratings, and seller information.

Required Headers:
--header 'Authorization: Bearer <YOUR_API_KEY>'

Parameters:
- product_id (Required): Product unique ID. Example: 1731687611898499152
- region (Required): Country/region code (e.g. US, GB, DE). Example: US

Example Response:
{
"code": 0,
"message": "success",
"data": {
"layout": null,
"shop/pdp/(product_name_slug$)/(product_id)/page": {
  "basic_info": {
    "lang": "en-US",
    "device_system": "mac",
    "is_mobile": false,
    "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36",
    "is_login": false,
    "web_id": "7571425464209393166"
  },
  "waf_decision": {
    "waf_type": 2,
    "dkms_token": "MIIBCwQM683LbzdJcu+QDkKSBIHoDGkFNkr9VAOx5UB7jwfyEXsvHZCfj8lf7L70nkkyuuXPMw41psFXqgpmHc41nYgkF1d8iT7PIHyG15QreFeLjtQxg+xm8t9slEZOBFEMEyM3qtBt4VgDMvSV3O4YAKQURWc5ph9cYncJerUurtw5ql58fP4qUI+QxhOQsE5EpZ/KNcZ75tKPY6jOvg6xWBoUnAcLF0Ux6F0QmaYyGr7Fx66tgdGa+eu0mtfVmNr0P5E/lV8vOy1jB4p763yaJwiKlAy+g020RviYhP+CXedHqGICFyGpvDygY82/DZECT8bVZ9fWlb7IRAQQ1D3E1hehKuiM9Przn0bTNQ=="
  },
  "region_info": {
    "vRegions": {
      "VREGION_UNKNOWN": "-",
      "VREGION_CHINAAGGREGATION": "China-Aggregation",
      "VREGION_CHINAENTERPRISE": "China-Enterprise",
      "VREGION_CHINABOE": "China-BOE",
      "VREGION_CHINABOE2": "China-BOE2",
      "VREGION_USBOE": "US-BOE",
      "VREGION_SINGAPOREBOE": "Singapore-BOE",
      "VREGION_CHINANORTH": "China-North",
      "VREGION_CHINAFINTECH": "China-Fintech",
      "VREGION_SINGAPORECENTRAL": "Singapore-Central",
      "VREGION_SINGAPORECOMMON": "Singapore-Common",
      "VREGION_SI
... (truncated)`)}
    >
      <span>✨</span>
      <span>Copy for AI</span>
    </button>
  </div>
</div>


## OpenAPI

````yaml en/tiktok.openapi.json GET /v1/tiktok/product/detail
openapi: 3.0.1
info:
  title: Tiktok API english documentation
  description: >-
    The english reference documentation of the Tiktok API includes the
    interface's purpose, parameter description, response status, and sample
    structure.
  version: 1.0.0
servers:
  - url: https://api.keyapi.ai
    description: Production
security: []
tags:
  - name: TikTok Influencer
  - name: TikTok Shop
  - name: TikTok Content
  - name: TikTok Intelligence
paths:
  /v1/tiktok/product/detail:
    get:
      tags:
        - TikTok Shop
      summary: Get Product Detail
      description: >-
        Retrieve real-time product details from TikTok Shop, including title,
        price, inventory, ratings, and seller information.
      operationId: get_api_v3_realtime_product_detail
      parameters:
        - name: product_id
          in: query
          required: true
          schema:
            type: string
            example: '1731687611898499152'
            default: '1731687611898499152'
          example: '1731687611898499152'
          description: Product unique ID
        - name: region
          in: query
          required: true
          schema:
            type: string
            example: US
            default: US
          example: US
          description: Country/region code (e.g. US, GB, DE)
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties: {}
                example:
                  code: 0
                  message: success
                  data:
                    layout: null
                    shop/pdp/(product_name_slug$)/(product_id)/page:
                      basic_info:
                        lang: en-US
                        device_system: mac
                        is_mobile: false
                        user_agent: >-
                          Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)
                          AppleWebKit/537.36 (KHTML, like Gecko)
                          Chrome/136.0.0.0 Safari/537.36
                        is_login: false
                        web_id: '7571425464209393166'
                      waf_decision:
                        waf_type: 2
                        dkms_token: >-
                          MIIBCwQM683LbzdJcu+QDkKSBIHoDGkFNkr9VAOx5UB7jwfyEXsvHZCfj8lf7L70nkkyuuXPMw41psFXqgpmHc41nYgkF1d8iT7PIHyG15QreFeLjtQxg+xm8t9slEZOBFEMEyM3qtBt4VgDMvSV3O4YAKQURWc5ph9cYncJerUurtw5ql58fP4qUI+QxhOQsE5EpZ/KNcZ75tKPY6jOvg6xWBoUnAcLF0Ux6F0QmaYyGr7Fx66tgdGa+eu0mtfVmNr0P5E/lV8vOy1jB4p763yaJwiKlAy+g020RviYhP+CXedHqGICFyGpvDygY82/DZECT8bVZ9fWlb7IRAQQ1D3E1hehKuiM9Przn0bTNQ==
                      region_info:
                        vRegions:
                          VREGION_UNKNOWN: '-'
                          VREGION_CHINAAGGREGATION: China-Aggregation
                          VREGION_CHINAENTERPRISE: China-Enterprise
                          VREGION_CHINABOE: China-BOE
                          VREGION_CHINABOE2: China-BOE2
                          VREGION_USBOE: US-BOE
                          VREGION_SINGAPOREBOE: Singapore-BOE
                          VREGION_CHINANORTH: China-North
                          VREGION_CHINAFINTECH: China-Fintech
                          VREGION_SINGAPORECENTRAL: Singapore-Central
                          VREGION_SINGAPORECOMMON: Singapore-Common
                          VREGION_SINGAPOREEE: Singapore-EE
                          VREGION_SINGAPORESAAS: Singapore-SaaS
                          VREGION_SINGAPOREGAME: Singapore-Game
                          VREGION_ALIYUNNC2: Aliyun_NC2
                          VREGION_USEAST: US-East
                          VREGION_USEASTRED: US-EastRed
                          VREGION_USWEST: US-West
                          VREGION_USCENTRAL: US-Central
                          VREGION_USNORTHEAST: US-NorthEast
                          VREGION_USEE: US-EE
                          VREGION_EUROPEWEST: Europe-West
                          VREGION_EUROPENORTH: Europe-North
                          VREGION_EUROPEEAST: Europe-East
                          VREGION_EUROPECENTRAL: Europe-Central
                          VREGION_EASTERNEUROTT: EasternEuro-TT
                          VREGION_MIDDLEEASTSOUTH: MiddleEast-South
                          VREGION_SOUTHAMERICAEAST: SouthAmerica-East
                          VREGION_AUSTRALIASOUTHEAST: Australia-SouthEast
                          VREGION_ASIAEAST: Asia-East
                          VREGION_ASIASOUTHEAST: Asia-SouthEast
                          VREGION_ASIASOUTH: Asia-South
                          VREGION_ASIANORTHEAST: Asia-NorthEast
                          VREGION_ASIASAAS: Asia-SaaS
                          VREGION_I18NGAME: I18N-Game
                          VREGION_CHINAINFBOE: China-InfBOE
                          VREGION_CHINATEXAS: China-Texas
                          VREGION_SINGAPORECOMPLIANCE: Singapore-Compliance
                          VREGION_USTTP: US-TTP
                          VREGION_CHINACDN: China-CDN
                          VREGION_CHINAEDGE: China-Edge
                          VREGION_CHINAVOLCEAST: ChinaVolc-East
                          VREGION_CHINAVOLCSOUTH: ChinaVolc-South
                          VREGION_CHINAEAST: China-East
                          VREGION_USTTP2: US-TTP2
                          VREGION_EUTTP: EU-TTP
                          VREGION_CHINAPAY: China-Pay
                          VREGION_SINFCHINANORTH: ChinaSinf-North
                          VREGION_SINFCHINAEAST: ChinaSinf-East
                          VREGION_ASIASOUTHEASTBD: Asia-SouthEastBD
                          VREGION_USEASTBD: US-EastBD
                          VREGION_EUCOMPLIANCE2: EU-Compliance2
                          VREGION_EUCOMPLIANCE: EU-Compliance
                          VREGION_IDCOMPLIANCE2: ID-Compliance2
                          VREGION_IDCOMPLIANCE: ID-Compliance
                          VREGION_USCOMPLIANCE: US-Compliance
                          VREGION_EUTTP2: EU-TTP2
                          VREGION_CHINAPAY2: China-Pay2
                          VREGION_ASIACIS: Asia-CIS
                          VREGION_USSOUTHWEST: US-SouthWest
                        path_region: US
                        real_region: US
                        real_region_source: IP
                        current_v_region: US-TTP
                        mssdk_region: ttp
                      route_info:
                        enter_method: ''
                        first_entrance: product_detail
                        first_entrance_position: ''
                        first_entrance_tt_scene: ''
                        has_ttwid: false
                        is_api: false
                        page_name: product_detail
                        previous_page: product_detail
                        query_source: product_detail
                        query_traffic_type: seo
                        referer: ''
                        referer_type: ''
                        request_url: >-
                          https://www.tiktok.com/shop/pdp/1731687611898499152/1731687611898499152?source=product_detail
                        route_page_name: pdp
                        route_product_id: '1731687611898499152'
                        route_product_name_slug: '1731687611898499152'
                      bot_info:
                        is_mock_bot: false
                        is_bot: false
                        request_time: 1762859873734
                      ab_test:
                        page_id: '677580895969551097'
                        vids:
                          - '74645328'
                        params:
                          bot_cost_optimize:
                            simplify_link: false
                            simplify_video_desc: false
                          seo_generic_exposure_capacity:
                            count: 50
                            vid: v3
                          tt_ecom:
                            pdp_modules:
                              bought_together:
                                skip: true
                              similiar_item_this_cat:
                                skip: true
                              more_from_this_cat:
                                skip: true
                              more_color_style:
                                skip: true
                      page_config:
                        global_fe_config:
                          page_name: product_detail
                        components_map:
                          - component_type: user_info
                            component_name: user_info
                            fe_config:
                              data_source:
                                need_fetch_at_first_screen: true
                          - component_type: page_header
                            component_name: page_header
                            fe_config:
                              data_source:
                                need_fetch_at_first_screen: true
                          - component_type: bread_crumbs
                            component_name: bread_crumbs
                            fe_config:
                              data_source:
                                need_split_request: true
                                need_fetch_at_first_screen: true
                            component_data:
                              bread_crumbs:
                                - name: TikTok Shop
                                  link: https://www.tiktok.com/shop
                                - name: Womenswear & Underwear
                                  link: >-
                                    https://www.tiktok.com/shop/c/womenswear-underwear/601152
                                - name: Women's Underwear
                                  link: >-
                                    https://www.tiktok.com/shop/c/women-s-underwear/842888
                                - name: Socks
                                  link: https://www.tiktok.com/shop/c/socks/845448
                                - name: >-
                                    Nyzfexk Women's Solid Mid-calf Socks, Casual
                                    Soft Comfy Warm Socks for Fall & Winter,
                                    Women's Socks for Daily Wear
                                  link: >-
                                    https://www.tiktok.com/shop/pdp/1731687611898499152/1731687611898499152?source=product_detail
                          - component_type: product_info
                            component_name: product_info
                            fe_config:
                              data_source:
                                need_fetch_at_first_screen: true
                            component_data:
                              categories:
                                - category_id: '601152'
                                  level: 1
                                  is_leaf: false
                                  parent_id: '0'
                                  category_name: Womenswear & Underwear
                                  name_key: magellan_601152
                                - category_id: '842888'
                                  level: 2
                                  is_leaf: false
                                  parent_id: '601152'
                                  category_name: Women's Underwear
                                  name_key: magellan_842888
                                - category_id: '845448'
                                  level: 3
                                  is_leaf: false
                                  parent_id: '842888'
                                  category_name: Socks
                                  name_key: magellan_845448
                                - category_id: '896400'
                                  level: 4
                                  is_leaf: true
                                  parent_id: '845448'
                                  category_name: Mid-Calf Socks
                                  name_key: magellan_896400
                              sale_region: US
                              error_code: 0
                              error_message: ''
                              product_info:
                                product_id: '1731687611898499152'
                                status: 1
                                seller:
                                  seller_id: '7495397146634455120'
                                  name: Nyzfexk INC
                                  avatar:
                                    height: 300
                                    width: 300
                                    uri: >-
                                      tos-useast5-i-omjb5zjo8w-tx/d05ac364c9d54138bd4624a25a1b964b
                                    url_list:
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d05ac364c9d54138bd4624a25a1b964b~tplv-fhlh96nyum-resize-png:300:300.png?dr=12184&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039
                                      - >-
                                        https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d05ac364c9d54138bd4624a25a1b964b~tplv-fhlh96nyum-resize-png:300:300.png?dr=12184&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039
                                  product_count: 61
                                  link: >-
                                    aweme://user/profile/7302703824119989290?sec_uid=MS4wLjABAAAA-xrDGDKWOXdC9_yVdMeF9Merq-wvGthNFF9Zm8tWFfYVFuJuWrarhFWDXHdj1JUd&from_scene=8
                                  im_schema: >-
                                    aweme://chat/launchchat?uid=7302703824119989290&enter_from=order_detail
                                  status: 2
                                  seller_location: United States of America
                                  shop_recommend:
                                    is_recommend: false
                                  is_hide: false
                                product_base:
                                  title: >-
                                    Nyzfexk Women's Solid Mid-calf Socks, Casual
                                    Soft Comfy Warm Socks for Fall & Winter,
                                    Women's Socks for Daily Wear
                                  desc_detail: >-
                                    [{"type":"text","text":"🧦 Nyzfexk Women's
                                    Solid Mid-calf Socks
                                    🧦"},{"type":"text","text":"Elevate your
                                    daily wear with these casual, soft, and
                                    comfy socks. Perfect for fall and winter,
                                    they offer warmth and style. Made from 100%
                                    polyester, these socks are machine washable
                                    for easy care. Each pack contains 5 pairs,
                                    ensuring you always have a spare. Ideal for
                                    everyday use, these socks are a versatile
                                    addition to any
                                    wardrobe."},{"type":"text","text":"Key
                                    Features:"},{"type":"ul","content":["Material:
                                    Polyester","Origin: China","Pattern:
                                    Plain","Weaving: Knitting","Quantity: 5
                                    pairs per pack","Wash: Machine
                                    washable","Season: Fall & Winter","Style:
                                    Casual"]},{"type":"text","text":"Sizing:"},{"type":"ul","content":["Cuff
                                    length: 13.5cm/5.31in","Total length:
                                    16cm/6.29in","Toe width: 8cm/3.14in Perfect
                                    fit for all foot
                                    shapes!"]},{"type":"text","text":"Stay cozy
                                    and stylish with these solid mid-calf socks.
                                    Their simple design complements any outfit
                                    effortlessly. Enjoy the comfort and
                                    practicality they bring to your daily
                                    routine."},{"type":"image","image":{"height":1066,"width":800,"uri":"tos-useast5-i-omjb5zjo8w-tx/1735597c4bb54d2791e3780778355eb7","url_list":["https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1735597c4bb54d2791e3780778355eb7~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393","https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1735597c4bb54d2791e3780778355eb7~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393"]}},{"type":"image","image":{"height":800,"width":800,"uri":"tos-useast5-i-omjb5zjo8w-tx/53e6c7d9db2347f2b9a9cb3264d13b93","url_list":["https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/53e6c7d9db2347f2b9a9cb3264d13b93~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393","https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/53e6c7d9db2347f2b9a9cb3264d13b93~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393"]}},{"type":"image","image":{"height":1066,"width":800,"uri":"tos-useast5-i-omjb5zjo8w-tx/076407e6a8ed465693ad7aa7e9fd54b2","url_list":["https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/076407e6a8ed465693ad7aa7e9fd54b2~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393","https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/076407e6a8ed465693ad7aa7e9fd54b2~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393"]}},{"type":"image","image":{"height":1066,"width":800,"uri":"tos-useast5-i-omjb5zjo8w-tx/9c8ef09807604e27b4fd1e2bac329e78","url_list":["https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/9c8ef09807604e27b4fd1e2bac329e78~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393","https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/9c8ef09807604e27b4fd1e2bac329e78~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393"]}},{"type":"image","image":{"height":1066,"width":800,"uri":"tos-useast5-i-omjb5zjo8w-tx/2e2c14e7664149a7a0c158c62e11b0ca","url_list":["https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2e2c14e7664149a7a0c158c62e11b0ca~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393","https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2e2c14e7664149a7a0c158c62e11b0ca~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393"]}},{"type":"image","image":{"height":1066,"width":800,"uri":"tos-useast5-i-omjb5zjo8w-tx/b47b4ae3223f4e4b98263b24da3b85ca","url_list":["https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b47b4ae3223f4e4b98263b24da3b85ca~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393","https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b47b4ae3223f4e4b98263b24da3b85ca~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393"]}},{"type":"image","image":{"height":1066,"width":800,"uri":"tos-useast5-i-omjb5zjo8w-tx/4dbc1602234847ee9d52fe1b94b3fd8a","url_list":["https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4dbc1602234847ee9d52fe1b94b3fd8a~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393","https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4dbc1602234847ee9d52fe1b94b3fd8a~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393"]}},{"type":"image","image":{"height":1066,"width":800,"uri":"tos-useast5-i-omjb5zjo8w-tx/e3054896245a41e9a9d2143a4ca8960c","url_list":["https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e3054896245a41e9a9d2143a4ca8960c~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393","https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e3054896245a41e9a9d2143a4ca8960c~tplv-fhlh96nyum-resize-jpeg:800:1066.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393"]}}]
                                  images:
                                    - height: 800
                                      width: 800
                                      thumb_uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77
                                      thumb_url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                      uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77
                                      url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                    - height: 800
                                      width: 800
                                      thumb_uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/2496985b19ba4c59872edeb312da9a48
                                      thumb_url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2496985b19ba4c59872edeb312da9a48~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2496985b19ba4c59872edeb312da9a48~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                      uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/2496985b19ba4c59872edeb312da9a48
                                      url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2496985b19ba4c59872edeb312da9a48~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2496985b19ba4c59872edeb312da9a48~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                    - height: 800
                                      width: 800
                                      thumb_uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/fbc7369e5d1d40ee875cc8ce83f92c42
                                      thumb_url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fbc7369e5d1d40ee875cc8ce83f92c42~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fbc7369e5d1d40ee875cc8ce83f92c42~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                      uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/fbc7369e5d1d40ee875cc8ce83f92c42
                                      url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fbc7369e5d1d40ee875cc8ce83f92c42~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fbc7369e5d1d40ee875cc8ce83f92c42~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                    - height: 800
                                      width: 800
                                      thumb_uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/d9ee75b2425e4fda862c902631ef20c2
                                      thumb_url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d9ee75b2425e4fda862c902631ef20c2~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d9ee75b2425e4fda862c902631ef20c2~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                      uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/d9ee75b2425e4fda862c902631ef20c2
                                      url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d9ee75b2425e4fda862c902631ef20c2~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d9ee75b2425e4fda862c902631ef20c2~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                    - height: 800
                                      width: 800
                                      thumb_uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/176ccc2e61174b6fb6a9e96379f7e14c
                                      thumb_url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/176ccc2e61174b6fb6a9e96379f7e14c~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/176ccc2e61174b6fb6a9e96379f7e14c~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                      uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/176ccc2e61174b6fb6a9e96379f7e14c
                                      url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/176ccc2e61174b6fb6a9e96379f7e14c~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/176ccc2e61174b6fb6a9e96379f7e14c~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                    - height: 800
                                      width: 800
                                      thumb_uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/e7d5d459e9b84ca9928e3964bde46b80
                                      thumb_url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e7d5d459e9b84ca9928e3964bde46b80~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e7d5d459e9b84ca9928e3964bde46b80~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                      uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/e7d5d459e9b84ca9928e3964bde46b80
                                      url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e7d5d459e9b84ca9928e3964bde46b80~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e7d5d459e9b84ca9928e3964bde46b80~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                    - height: 800
                                      width: 800
                                      thumb_uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/97b20c9385f54c73acde3eb353b8f6de
                                      thumb_url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/97b20c9385f54c73acde3eb353b8f6de~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/97b20c9385f54c73acde3eb353b8f6de~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                      uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/97b20c9385f54c73acde3eb353b8f6de
                                      url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/97b20c9385f54c73acde3eb353b8f6de~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/97b20c9385f54c73acde3eb353b8f6de~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                    - height: 800
                                      width: 800
                                      thumb_uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/4652c7ff39184b0ba1534f253fe8f8b4
                                      thumb_url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4652c7ff39184b0ba1534f253fe8f8b4~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4652c7ff39184b0ba1534f253fe8f8b4~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                      uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/4652c7ff39184b0ba1534f253fe8f8b4
                                      url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4652c7ff39184b0ba1534f253fe8f8b4~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4652c7ff39184b0ba1534f253fe8f8b4~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                    - height: 800
                                      width: 800
                                      thumb_uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/6add3a47ce8f45f29ff6015b3f15b91e
                                      thumb_url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6add3a47ce8f45f29ff6015b3f15b91e~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6add3a47ce8f45f29ff6015b3f15b91e~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                      uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/6add3a47ce8f45f29ff6015b3f15b91e
                                      url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6add3a47ce8f45f29ff6015b3f15b91e~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6add3a47ce8f45f29ff6015b3f15b91e~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                  specifications:
                                    - name: Dangerous Goods Or Hazardous Materials
                                      value: 'No'
                                    - name: Style
                                      value: Casual
                                    - name: Pattern
                                      value: Plain
                                    - name: Season
                                      value: Winter
                                    - name: Country Of Origin
                                      value: China
                                    - name: Material
                                      value: Polyester
                                    - name: Washing Instructions
                                      value: Machine Washable
                                    - name: Quantity Per Pack
                                      value: '5'
                                  sold_count: 108100
                                  price:
                                    original_price: ''
                                    real_price: $11.99
                                    discount: ''
                                    need_icon: false
                                    is_interval_price: false
                                    show_hot_zone: false
                                    min_sku_price: '11.99'
                                    currency: USD
                                    panel_schema: ''
                                    currency_symbol: $
                                    symbol_position: 1
                                    da_info: >-
                                      {"price_show_tag":"","discount_percentage":"60"}
                                sale_props:
                                  - prop_id: '100000'
                                    prop_name: Color
                                    has_image: true
                                    sale_prop_values:
                                      - prop_value_id: '7542893316992943885'
                                        prop_value: Multicolor
                                        image:
                                          height: 800
                                          width: 800
                                          thumb_uri: >-
                                            tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77
                                          thumb_url_list:
                                            - >-
                                              https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            - >-
                                              https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77~tplv-fhlh96nyum-resize-jpeg:200:200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          uri: >-
                                            tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77
                                          url_list:
                                            - >-
                                              https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            - >-
                                              https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/317e656fd40c44f4953edcfe2d582a77~tplv-fhlh96nyum-resize-jpeg:800:800.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                  - prop_id: '100007'
                                    prop_name: Size
                                    has_image: false
                                    sale_prop_values:
                                      - prop_value_id: '7129048433469474565'
                                        prop_value: EU36-39
                                skus:
                                  - sku_id: '1731687677700706384'
                                    sku_sale_props:
                                      - prop_id: '100000'
                                        prop_name: Color
                                        prop_value_id: '7542893316992943885'
                                        prop_value: Multicolor
                                      - prop_id: '100007'
                                        prop_name: Size
                                        prop_value_id: '7129048433469474565'
                                        prop_value: EU36-39
                                    sale_prop_value_ids: '7542893316992943885_7129048433469474565'
                                    stock: 80072
                                    purchase_limit: 20
                                    price:
                                      real_price:
                                        price_str: $11.99
                                        price_val: '11.99'
                                        currency: USD
                                    need_icon: false
                                    add_to_cart_button:
                                      status: 2
                                    warehouse_id: '7337437982394681134'
                                    quantity_property:
                                      default_add_cart_quantity: 1
                                      quantity_minus_support_edit: true
                                    buy_button:
                                      desc: Buy now
                                      default_desc: Buy now
                                    minimum_buy_quantity: 0
                                    promotion_limit_quantity: 0
                                    deduction_text: ''
                                    status: 1
                                    pdp_button_area_id: add_disable
                                    quantity_promotion_notice_info:
                                      location: 0
                                      da_info: '{"has_promo_price_limit":"0"}'
                                    da_info: >-
                                      {"delivery_flag_sku":"{\"free_shipping_product_cnt\":\"-1\"}"}
                                logistic:
                                  delivery_option: 1
                                  delivery_name: Standard shipping
                                  is_default: false
                                  reachable: true
                                  lead_time: Nov 17 - Nov 22
                                  shipping_fee:
                                    price_str: $0.00
                                    price_val: '0'
                                    currency: USD
                                  free_shipping: true
                                  logistic_text: {}
                                  logistics_service_id: '7480241405839968042'
                                  with_voucher: false
                                  delivery_min_days: 6
                                  delivery_max_days: 11
                                  logistic_promotion: {}
                                  event_tracking:
                                    shipping_currency: USD
                                    est_logistic_delivery_day_min: '0'
                                    ship_from: local
                                    est_logistic_delivery_day_max: '0'
                                    shipping_type: standard
                                    shipping_price_after_coupon: '0'
                                    shipping_price_origin: '4.62'
                                    est_delivery_day_max: '11'
                                    est_delivery_day_min: '6'
                                    is_display_fastest: '0'
                                    is_instant_tag: '0'
                                    est_delivery_bday_min: '4'
                                    delivery_type: 4pl
                                    shipping_price: '0'
                                    is_1_day_shipping: '0'
                                    is_next_day_delivery: '0'
                                    is_late_guarantee: '0'
                                  original_shipping_val: '4.62'
                                  transit_delivery_min_days: 0
                                  transit_delivery_max_days: 0
                                  leadtime_display_strategy:
                                    display_edt: true
                                    display_tts_delivery: false
                                  cod_available: false
                                product_detail_review:
                                  product_rating: 4.9
                                  review_count: 3658
                                  review_items:
                                    - review:
                                        review_id: '7567556573619357454'
                                        rating: 5
                                        display_text: >-
                                          Fit & Size: These fit perfectly for my
                                          size 9.5-10 foot. Not tight at all.

                                          Comfort: These socks are much softer
                                          than I expected and the perfect
                                          thickness.

                                          Design: Love the design and height of
                                          sick.

                                          Material & Fabric: Very soft and
                                          comfortable!

                                          Durability: I have only been wearing a
                                          few days but they feel like nice quality
                                          and seem to be made well.
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1761959090911'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 2
                                            tag_key: Fit & Size
                                            tag_text: >-
                                              These fit perfectly for my size 9.5-10
                                              foot. Not tight at all.
                                          - text_type: 2
                                            tag_key: Comfort
                                            tag_text: >-
                                              These socks are much softer than I
                                              expected and the perfect thickness.
                                          - text_type: 2
                                            tag_key: Design
                                            tag_text: Love the design and height of sick.
                                          - text_type: 2
                                            tag_key: Material & Fabric
                                            tag_text: Very soft and comfortable!
                                          - text_type: 2
                                            tag_key: Durability
                                            tag_text: >-
                                              I have only been wearing a few days but
                                              they feel like nice quality and seem to
                                              be made well.
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1fa8a673779f4b4da30c6e15e85d3254~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c80f351dbad24ca1a5ab664f26122384~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 1w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: Juliette the Mini
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/b56015780c1645a7f0fee9bcfe32b1cd~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=aedbc459&x-expires=1763031600&x-signature=geJrOD5THSEHk3ca79YcX5LFoyg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/b56015780c1645a7f0fee9bcfe32b1cd~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=eda29924&x-expires=1763031600&x-signature=3OrfYr1XObbwKWrfqLykYP8q%2Bs8%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/b56015780c1645a7f0fee9bcfe32b1cd~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=22b4c5bd&x-expires=1763031600&x-signature=kUxnGvyI9kTdh2ihO6hWXEQ62ww%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/7168998812743566378?sec_uid=MS4wLjABAAAAPfmeACPbm-oTLwdOFFqV32G1F5m4nLvCWxORiYlST_oxA8MkiJlhZt7S_VTGn1LZ&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7567344185448302350'
                                        rating: 5
                                        display_text: >-
                                          Fit & Size: Good size

                                          Comfort: 100%

                                          Design: 100%

                                          Material & Fabric: 100%

                                          Girls, these socks are amazing 😍 Super
                                          soft, cozy, and warm, perfect for fall
                                          🍁 or winter ❄️.
                                        images:
                                          - thumb_url_list:
                                              - >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/oQuEUzgBfJIlkqIEGDdpx4BfmEDSF5FzEJdIj8~tplv-noop.image?t=9276707c&x-expires=1762881484&x-signature=7LKh8QxQMH7s4RjJ0WT48GRbwFc%3D
                                            url_list:
                                              - >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/oQuEUzgBfJIlkqIEGDdpx4BfmEDSF5FzEJdIj8~tplv-noop.image?t=9276707c&x-expires=1762881484&x-signature=7LKh8QxQMH7s4RjJ0WT48GRbwFc%3D
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1761909639234'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 2
                                            tag_key: Fit & Size
                                            tag_text: Good size
                                          - text_type: 2
                                            tag_key: Comfort
                                            tag_text: 100%
                                          - text_type: 2
                                            tag_key: Design
                                            tag_text: 100%
                                          - text_type: 2
                                            tag_key: Material & Fabric
                                            tag_text: 100%
                                          - text_type: 1
                                            plain_text: >-
                                              Girls, these socks are amazing 😍 Super
                                              soft, cozy, and warm, perfect for fall
                                              🍁 or winter ❄️.
                                        media:
                                          - media_type: 2
                                            video:
                                              id: v12797gd0002d429l57og65u166tjpvg
                                              duration: 11.679
                                              post_url: >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/oQuEUzgBfJIlkqIEGDdpx4BfmEDSF5FzEJdIj8~tplv-noop.image?t=9276707c&x-expires=1762881484&x-signature=7LKh8QxQMH7s4RjJ0WT48GRbwFc%3D
                                              media_type: video
                                              video_infos:
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/53898edc5950d413de38cb29f733c6c9/69136fcc/video/tos/useast5/tos-useast5-ve-10135-tx/o4MI56QfEFJEpBQgEd9DSUuzJzmDq8pErDxfBq/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=5484&bt=2742&cs=0&ds=3&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=NDo8OTRoNTY6Zjw0Nmg7O0BpanN3OXg5cjg8NzUzZzo6NEAtMjIyYzBjXl4xLi1iYTNhYSNzZzMuMmQ0aS9hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/b3763ab2bc8ef1382374ec8da16ad9d1/69136fcc/video/tos/useast5/tos-useast5-ve-10135-tx/o4MI56QfEFJEpBQgEd9DSUuzJzmDq8pErDxfBq/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=5484&bt=2742&cs=0&ds=3&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=NDo8OTRoNTY6Zjw0Nmg7O0BpanN3OXg5cjg8NzUzZzo6NEAtMjIyYzBjXl4xLi1iYTNhYSNzZzMuMmQ0aS9hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  url_expire: 1762881484
                                                  width: 720
                                                  height: 1280
                                                  file_hash: b691b7b4c58ff9d950cfdcd7f56a862e
                                                  format: mp4
                                                  size: 4099125
                                                  bitrate: 2807860
                                                  video_quality: normal
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/79e5709683c719323971b25bac2951a4/69136fcc/video/tos/useast5/tos-useast5-ve-10135-tx/osCxDufDSI8Pdzp5EmNfoBzJEBqJmEqNFQBUEg/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=1702&bt=851&cs=0&ds=1&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=ZjVpaWVkaTYzNDg4OjVoZ0BpanN3OXg5cjg8NzUzZzo6NEBjMi5hLjRgNjIxNC1jMl81YSNzZzMuMmQ0aS9hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/574ba9b0414129f3a95c2a4c0f27e8f0/69136fcc/video/tos/useast5/tos-useast5-ve-10135-tx/osCxDufDSI8Pdzp5EmNfoBzJEBqJmEqNFQBUEg/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=1702&bt=851&cs=0&ds=1&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=ZjVpaWVkaTYzNDg4OjVoZ0BpanN3OXg5cjg8NzUzZzo6NEBjMi5hLjRgNjIxNC1jMl81YSNzZzMuMmQ0aS9hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  url_expire: 1762881484
                                                  width: 360
                                                  height: 640
                                                  file_hash: 236a199e2d362d495c20b5701d7aec3a
                                                  format: mp4
                                                  size: 1272452
                                                  bitrate: 871617
                                                  video_quality: normal
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/17ba7e5a880e19b917964b7099b1a584/69136fcc/video/tos/useast5/tos-useast5-ve-10135-tx/o8xmqQCfp4Dz4zuEB8FEgqDU5BJd2NEEIEfzSJ/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=2912&bt=1456&cs=0&ds=2&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=ZGhlOWlnMzs4M2lkaTVmZUBpanN3OXg5cjg8NzUzZzo6NEBjMS80YTFfXmExYWBhMDIyYSNzZzMuMmQ0aS9hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/e4a8f3213ba6255ea895dd3137899f19/69136fcc/video/tos/useast5/tos-useast5-ve-10135-tx/o8xmqQCfp4Dz4zuEB8FEgqDU5BJd2NEEIEfzSJ/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=2912&bt=1456&cs=0&ds=2&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=ZGhlOWlnMzs4M2lkaTVmZUBpanN3OXg5cjg8NzUzZzo6NEBjMS80YTFfXmExYWBhMDIyYSNzZzMuMmQ0aS9hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  url_expire: 1762881484
                                                  width: 480
                                                  height: 854
                                                  file_hash: 7c468acebae4a617c39ce852a22ada36
                                                  format: mp4
                                                  size: 2177077
                                                  bitrate: 1491276
                                                  video_quality: normal
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/615839efda22458e987719a5ffa54104~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 1w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: Esme🎀
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/56cfee05bfa63c6278a1698366d42f52~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=4522ac64&x-expires=1763031600&x-signature=0AIl340hQEXIYUkO%2FckJIfRxQgs%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/56cfee05bfa63c6278a1698366d42f52~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=798c3edd&x-expires=1763031600&x-signature=aTuh7E9aG2TMQD83rj8miu4IHGU%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/56cfee05bfa63c6278a1698366d42f52~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=5b9d76ac&x-expires=1763031600&x-signature=GGk1IopmjoGapDRV9qTRrO%2FnqsI%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/6964463965473702918?sec_uid=MS4wLjABAAAA_USc31Ef_oG1Og_VwfrgDWUamptp2nm2GPTbJQpG1OrF5ZwdRD_diycTX3TyKIpL&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7563119048767309581'
                                        rating: 5
                                        display_text: >-
                                          These socks are amazing! The quality is
                                          phenomenal, warmth-yes, cozy-yes and
                                          perfect for midi-boots, clogs and
                                          sneakers.Yes, buy the socks you will not
                                          regret the purchase.
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1760925898383'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              These socks are amazing! The quality is
                                              phenomenal, warmth-yes, cozy-yes and
                                              perfect for midi-boots, clogs and
                                              sneakers.Yes, buy the socks you will not
                                              regret the purchase.
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/917ce638c2414963bcc340486258b3ef~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cb0c3ae496f34675bf9d641c0188be5f~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 3w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: Amy | TTS finds | Mommin’
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/cc581994295ea3589a52bec7048808ad~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=b1c59844&x-expires=1763031600&x-signature=4o2F67srOOQED2aHCs%2FFCdxNnZw%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/cc581994295ea3589a52bec7048808ad~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=b5e57e40&x-expires=1763031600&x-signature=nHHMGy8ByEtQs8iDG1EzKk1jK7E%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/cc581994295ea3589a52bec7048808ad~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=7b2f8e3c&x-expires=1763031600&x-signature=6IJA7sH9L7sIlCkApi9sgNPNgU8%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/7176396153243812906?sec_uid=MS4wLjABAAAAG1XE17U3RhWfvtUDjcuRK9qM6S2Nu_uPEW-OfUS9g0HIOl55N_UUjPzd9sSF35HK&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7566392863676925710'
                                        rating: 5
                                        display_text: >-
                                          Me encantaron son súper lindas y
                                          abrigadoras, se ven muy bien, buena
                                          calidad  los colores son preciosos las
                                          recomiendo 100/10 👏🏼😁 súper feliz 
                                          las quiero en todos los colores,
                                          exelente compra no se van arrepentir.
                                        images:
                                          - thumb_url_list:
                                              - >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/okIsAXAaPQBO5il3268BlwBepNBvEt7c9ItQiE~tplv-noop.image?t=9276707c&x-expires=1762881496&x-signature=Ufvf4dQo5kpi8qjGO2YOhq%2BrWZQ%3D
                                            url_list:
                                              - >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/okIsAXAaPQBO5il3268BlwBepNBvEt7c9ItQiE~tplv-noop.image?t=9276707c&x-expires=1762881496&x-signature=Ufvf4dQo5kpi8qjGO2YOhq%2BrWZQ%3D
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1761688142388'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              Me encantaron son súper lindas y
                                              abrigadoras, se ven muy bien, buena
                                              calidad  los colores son preciosos las
                                              recomiendo 100/10 👏🏼😁 súper feliz 
                                              las quiero en todos los colores,
                                              exelente compra no se van arrepentir.
                                        media:
                                          - media_type: 2
                                            video:
                                              id: v12797gd0002d40jjdnog65mtk7madt0
                                              duration: 23.034
                                              post_url: >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/okIsAXAaPQBO5il3268BlwBepNBvEt7c9ItQiE~tplv-noop.image?t=9276707c&x-expires=1762881496&x-signature=Ufvf4dQo5kpi8qjGO2YOhq%2BrWZQ%3D
                                              media_type: video
                                              video_infos:
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/18dc473a902ca1c62906561cacbb521c/69136fd8/video/tos/useast5/tos-useast5-ve-10135-tx/o4BBMpgtEAlQ9IillvXOev2BV5m6EwNQQ7EBia/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=850&bt=425&cs=0&ds=1&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=Zmc3Z2hoO2Q6aDc2O2czNkBpM2dwbnA5cmdtNzUzZzo6NEBeLjQ0YjMtXmIxMjYvLWEzYSNxXjRxMmRrZy1hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/9dbb85c033e4b667ba88371e7eac44f9/69136fd8/video/tos/useast5/tos-useast5-ve-10135-tx/o4BBMpgtEAlQ9IillvXOev2BV5m6EwNQQ7EBia/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=850&bt=425&cs=0&ds=1&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=Zmc3Z2hoO2Q6aDc2O2czNkBpM2dwbnA5cmdtNzUzZzo6NEBeLjQ0YjMtXmIxMjYvLWEzYSNxXjRxMmRrZy1hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  url_expire: 1762881496
                                                  width: 360
                                                  height: 640
                                                  file_hash: 4768e9c90ecf0f13f2feea8c2d814662
                                                  format: mp4
                                                  size: 1254111
                                                  bitrate: 435568
                                                  video_quality: normal
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/2e140e8f93e3441879c18b779e4febfb/69136fd8/video/tos/useast5/tos-useast5-ve-10135-tx/os7B2bgAfJQ46mgBgDdphlB0OEDSF5eK2TDI6t/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=1406&bt=703&cs=0&ds=2&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=OjU2N2dlOGUzNjQ6ZTw1PEBpM2dwbnA5cmdtNzUzZzo6NEBhLjRgLmEwNWAxL2I2Ml5hYSNxXjRxMmRrZy1hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/a1c969e8bafb35e6f2140ff90e75dc20/69136fd8/video/tos/useast5/tos-useast5-ve-10135-tx/os7B2bgAfJQ46mgBgDdphlB0OEDSF5eK2TDI6t/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=1406&bt=703&cs=0&ds=2&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=OjU2N2dlOGUzNjQ6ZTw1PEBpM2dwbnA5cmdtNzUzZzo6NEBhLjRgLmEwNWAxL2I2Ml5hYSNxXjRxMmRrZy1hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  url_expire: 1762881496
                                                  width: 480
                                                  height: 854
                                                  file_hash: e5b147f2c7c08851c2ef98dbcf15c7e8
                                                  format: mp4
                                                  size: 2073564
                                                  bitrate: 720175
                                                  video_quality: normal
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/cdf2991e70f71cc1726a1001e666e1ec/69136fd8/video/tos/useast5/tos-useast5-ve-10135-tx/o4A3Dtoe7SIegkHlC2GEUNLnkYfAATbgt56ORy/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=2590&bt=1295&cs=0&ds=3&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=ODs7OWk6ZjloO2Q7O2ZkOUBpM2dwbnA5cmdtNzUzZzo6NEAuYS1fNjQ0XjAxLWIwNS8yYSNxXjRxMmRrZy1hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/c3a9941c719faa3dec49a100dc43b6b1/69136fd8/video/tos/useast5/tos-useast5-ve-10135-tx/o4A3Dtoe7SIegkHlC2GEUNLnkYfAATbgt56ORy/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=2590&bt=1295&cs=0&ds=3&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=ODs7OWk6ZjloO2Q7O2ZkOUBpM2dwbnA5cmdtNzUzZzo6NEAuYS1fNjQ0XjAxLWIwNS8yYSNxXjRxMmRrZy1hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  url_expire: 1762881496
                                                  width: 720
                                                  height: 1280
                                                  file_hash: f9de935e3cce5f78915122cce7358d6a
                                                  format: mp4
                                                  size: 3820271
                                                  bitrate: 1326828
                                                  video_quality: normal
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6bb1c1215b704326b8acff5f0b890c8b~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 1w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: mafermj 🇨🇴
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/7352296836394450987~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=00150604&x-expires=1763031600&x-signature=cQV07pNbpYfVcyog5HbNh4z5xtA%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/7352296836394450987~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=b68d1da1&x-expires=1763031600&x-signature=U4tB7BjJQXoAoMt0ZHegZ%2FTFfSQ%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/7352296836394450987~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=bd05f1ad&x-expires=1763031600&x-signature=wRK1FPGq0TlRPCBZNf5IY%2B9D3Os%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/7030464683933615110?sec_uid=MS4wLjABAAAAcJLEJtmGO3DAkPNB2hnbOlFb9WN21X7fes-Fjpa-I5VK8zqImA_1mYjc4eNATDRF&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7566588422207473422'
                                        rating: 5
                                        display_text: >-
                                          Me encantaron suaves, cómodas,los
                                          colores los mismos que se ven en la
                                          imagen,son gruesas buenas para el frío,
                                          el largo perfecto para mi, llegaron en
                                          poco tiempo,en general las recomiendo
                                          100x100
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1761733696303'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              Me encantaron suaves, cómodas,los
                                              colores los mismos que se ven en la
                                              imagen,son gruesas buenas para el frío,
                                              el largo perfecto para mi, llegaron en
                                              poco tiempo,en general las recomiendo
                                              100x100
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4370600c2ab643f2b5973eab7f126274~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2cc3a6e4a59045948ccd1f843004b972~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 1w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: Kenya
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7329450760163786757~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=88e1799e&x-expires=1763031600&x-signature=hsuOQomhpvKu28k250fS1mnMm5Y%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7329450760163786757~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=3d9bf881&x-expires=1763031600&x-signature=9O8jLKKSdNhDwnP%2Bn5odoUvNP6I%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7329450760163786757~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=52e8d0c2&x-expires=1763031600&x-signature=UGJUSg1k8jQ4dgp8RxjWF12JDkg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/6800443839963431941?sec_uid=MS4wLjABAAAA-bZ6nl8lzRoRo_Z-ccX3DrAJmJ84tQcaEuTq-CeNGP2TzHH4s6yigRr0qTwhKqGG&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7559731523692283661'
                                        rating: 5
                                        display_text: >-
                                          Socks are such an amazing quality !!
                                          Super warm and thick , love the variety
                                          of colours for fall I’m stunned with my
                                          order
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1760137175301'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              Socks are such an amazing quality !!
                                              Super warm and thick , love the variety
                                              of colours for fall I’m stunned with my
                                              order
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/a8012edeea4a49e3ae215e0b5b2b0320~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e895de2de34f43d68b04af7457da6747~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/de7947c4931a48afb1ea68227577e013~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: October 10, 2025
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: elyliciouss4
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/90fbf96ae5f1279d1fd802f50a35dfcb~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=bf57d93c&x-expires=1763031600&x-signature=zRN%2BbYVztGHnM%2FtnFAsJlgRpEqg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/90fbf96ae5f1279d1fd802f50a35dfcb~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=6edc51b4&x-expires=1763031600&x-signature=oFy4zS0UcmW%2B5Q3JH7pKiI%2Bri5I%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/90fbf96ae5f1279d1fd802f50a35dfcb~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=13f78b11&x-expires=1763031600&x-signature=cUakWwMVTc7noV6wWEjesDRjxI0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/6813218826193486854?sec_uid=MS4wLjABAAAA5l8zkRol1cRmJ9uGIVDD9eWja3qjnA6bfGghKT7QBb7POdKrtojEAOujLQx0Yx2Z&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7564093826441447182'
                                        rating: 5
                                        display_text: >-
                                          So cozy! Great quality! Lots of stretch.
                                          Neutral colors that go with everything!
                                          I’m ordering more!
                                        images:
                                          - thumb_url_list:
                                              - >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/37bfdf49881d4683868d347b7e161df2_1761152776~tplv-noop.image?t=9276707c&x-expires=1762881483&x-signature=pCaR6kmsjSNeD0TpPgO24Ej5qwg%3D
                                            url_list:
                                              - >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/37bfdf49881d4683868d347b7e161df2_1761152776~tplv-noop.image?t=9276707c&x-expires=1762881483&x-signature=pCaR6kmsjSNeD0TpPgO24Ej5qwg%3D
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1761152836338'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              So cozy! Great quality! Lots of stretch.
                                              Neutral colors that go with everything!
                                              I’m ordering more!
                                        media:
                                          - media_type: 2
                                            video:
                                              id: v12797gd0002d3sgsgnog65g1dnpatn0
                                              duration: 10.011
                                              post_url: >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/37bfdf49881d4683868d347b7e161df2_1761152776~tplv-noop.image?t=9276707c&x-expires=1762881483&x-signature=pCaR6kmsjSNeD0TpPgO24Ej5qwg%3D
                                              media_type: video
                                              video_infos:
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/5773738b063b0b1ea26c2cfaac2fc500/69136fcb/video/tos/useast5/tos-useast5-ve-10135-tx/os5eDfgCyE3kEwDdFNRAFCt5IY7QTvVuLH0Rem/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=1358&bt=679&cs=0&ds=1&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=ZWg7NGc7OzM3ZTw8aDg0NUBpM3dzZ2o5cmpqNjUzZzo6NEBiLTM1Ll81XmExY142L2EzYSNrXmsuMmRrcHBhLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/ca79ef6463d56dd3ac58c7c15e145e04/69136fcb/video/tos/useast5/tos-useast5-ve-10135-tx/os5eDfgCyE3kEwDdFNRAFCt5IY7QTvVuLH0Rem/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=1358&bt=679&cs=0&ds=1&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=ZWg7NGc7OzM3ZTw8aDg0NUBpM3dzZ2o5cmpqNjUzZzo6NEBiLTM1Ll81XmExY142L2EzYSNrXmsuMmRrcHBhLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  url_expire: 1762881483
                                                  width: 360
                                                  height: 640
                                                  file_hash: 16ac1169980e9fd475f3fcb3f4a00bbe
                                                  format: mp4
                                                  size: 870130
                                                  bitrate: 695339
                                                  video_quality: normal
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/cc8a2214251fb31dabca10a77e527398/69136fcb/video/tos/useast5/tos-useast5-ve-10135-tx/oU7PuHFyTAeitADRxhkWQyr8AC38fKek2AMPyW/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=2238&bt=1119&cs=0&ds=2&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=NjszOmQ7Ojo2OmdkZjlkO0BpM3dzZ2o5cmpqNjUzZzo6NEBfYS00MTFhXzIxLi1fX2EuYSNrXmsuMmRrcHBhLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/d4e224a8ab8a8e37a1b6c5e881fcad28/69136fcb/video/tos/useast5/tos-useast5-ve-10135-tx/oU7PuHFyTAeitADRxhkWQyr8AC38fKek2AMPyW/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=2238&bt=1119&cs=0&ds=2&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=NjszOmQ7Ojo2OmdkZjlkO0BpM3dzZ2o5cmpqNjUzZzo6NEBfYS00MTFhXzIxLi1fX2EuYSNrXmsuMmRrcHBhLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  url_expire: 1762881483
                                                  width: 480
                                                  height: 854
                                                  file_hash: cf043395455f323c856f1b2c8d44ff00
                                                  format: mp4
                                                  size: 1434119
                                                  bitrate: 1146034
                                                  video_quality: normal
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/1f1a9a2b331dfa121afffe572ba62ba4/69136fcb/video/tos/useast5/tos-useast5-ve-10135-tx/o4u7geE3eCFLY5kxyt5CDhAIDfT7FHQdVCZRQE/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=3934&bt=1967&cs=0&ds=3&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=NWRmaDM8OzhnZmczMzw6ZEBpM3dzZ2o5cmpqNjUzZzo6NEAtY2NfNWM0XjAxNGAyNjYzYSNrXmsuMmRrcHBhLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/e119885d520df0e702a393dc9381ab7e/69136fcb/video/tos/useast5/tos-useast5-ve-10135-tx/o4u7geE3eCFLY5kxyt5CDhAIDfT7FHQdVCZRQE/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=3934&bt=1967&cs=0&ds=3&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=NWRmaDM8OzhnZmczMzw6ZEBpM3dzZ2o5cmpqNjUzZzo6NEAtY2NfNWM0XjAxNGAyNjYzYSNrXmsuMmRrcHBhLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b0000
                                                  url_expire: 1762881483
                                                  width: 720
                                                  height: 1280
                                                  file_hash: 23922ada44b9ad76674472f4fa6a01f9
                                                  format: mp4
                                                  size: 2521071
                                                  bitrate: 2014640
                                                  video_quality: normal
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 2w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: Angie Whitt
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/3e2c86304d98e5424de77717edf00956~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=26035084&x-expires=1763031600&x-signature=rclj1%2FEsKFI7OUKt53HOERGtQKc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/3e2c86304d98e5424de77717edf00956~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=88e045a7&x-expires=1763031600&x-signature=o4lu%2BYbwksNqc%2FL%2BDjYPCSCJJzs%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/3e2c86304d98e5424de77717edf00956~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=07409d5c&x-expires=1763031600&x-signature=zV9%2FA3kBq9U93RNgMwO1tSo03pc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/7419006180699145262?sec_uid=MS4wLjABAAAAHMM6hug59nTSrt5Oh7vtprIWXDa-eo9FX0YL7wSeGJBSdzBcyXS19Bzc-YA5BIez&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7564062228606142222'
                                        rating: 5
                                        display_text: >-
                                          I loved these so much, they are very
                                          soft and comfy. Will be buying more. 💯
                                          recommend. Took a little long to ship
                                          but worth the wait. I’m a size 10 in
                                          shoes.
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1761145502716'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              I loved these so much, they are very
                                              soft and comfy. Will be buying more. 💯
                                              recommend. Took a little long to ship
                                              but worth the wait. I’m a size 10 in
                                              shoes.
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4d78a3be259a481b8d04de23d7eac5e4~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/13fef5a2b85541449b541545d94ba1f5~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/da9002950f954831969d459b28fec142~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 2w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: 𝒱𝒾𝒱𝒾𝒶𝓃𝒶 Reynoso
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/0c8818b00b3b22d555da5c92301761d2~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=62a50a75&x-expires=1763031600&x-signature=AQlKjhj6m6K5NJxFR63J0FX4mSA%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/0c8818b00b3b22d555da5c92301761d2~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=d1964a36&x-expires=1763031600&x-signature=D2TCW%2BujLsewO4rS4oJJ6P0d8Pc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/0c8818b00b3b22d555da5c92301761d2~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=7840ae0e&x-expires=1763031600&x-signature=%2Be39HDRhs%2FlX1RJJLsKTGtSHqpo%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/6795674391114105862?sec_uid=MS4wLjABAAAAXJofmpmnz55it2aMswZt3AZ8DOhH-OTusHBklQkVOe0oazHBEei7EFrj5yIU01Sv&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7566508895221401399'
                                        rating: 5
                                        display_text: >-
                                          Good quality and soft and comfortable. 
                                          Nice colors go good with my Uggs and
                                          rain boots. Love them
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1761715174580'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              Good quality and soft and comfortable. 
                                              Nice colors go good with my Uggs and
                                              rain boots. Love them
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fb7c004e34174344b3841411bc018187~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/37c34f2238544509b43a109b700fe9b4~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 1w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: 1987savy
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/c06549274ddc17afd0e05d9e71e33c12~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=df52dfbb&x-expires=1763031600&x-signature=c7aBisPZfUAdaaJlJmBejNQa5%2BY%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/c06549274ddc17afd0e05d9e71e33c12~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=bdd790d9&x-expires=1763031600&x-signature=ixtNprNjjnChCIx5eAr9pA4pOwI%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/c06549274ddc17afd0e05d9e71e33c12~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=0f9a99d5&x-expires=1763031600&x-signature=g%2FJPU0zxF8dau9g3wy9ussw0u%2Fw%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/6966056108193088518?sec_uid=MS4wLjABAAAAajWy8GcEXLr2TnNJBvlgooMCxwjVSdb4zy4X1WkAf-YiHOdFALk1HrbjE_KCg20R&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7569016636705933111'
                                        rating: 5
                                        display_text: >-
                                          Super suaves de buena calidad, me
                                          encantaron especial buenisimos  en
                                          tiempo de frio. Los recomiendo
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1762299048261'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              Super suaves de buena calidad, me
                                              encantaron especial buenisimos  en
                                              tiempo de frio. Los recomiendo
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/65ff5fe7792d4b1abe1ed0dea07c43a3~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/07697457c5bc4ac0965c65cb138115ad~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 6d ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: fabiola
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7336401050226589702~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=45c3b973&x-expires=1763031600&x-signature=9iYciq9e0C8tsHvX8r7FTQbi8RI%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7336401050226589702~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=0660a030&x-expires=1763031600&x-signature=Iu%2F7zTQGu88fNHdkgqR5zOMHS0s%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7336401050226589702~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e6a85fad&x-expires=1763031600&x-signature=VxAeSqHr9rDYiJFl3Q02LmIV9EM%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/6747060794171982853?sec_uid=MS4wLjABAAAA2YlU3Kenkdhybe2slNZ7iiPnI-APigZP3HM_c7mRdDYkDvvw-tJ7Qu_KFhCZpz_E&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7568947330309801742'
                                        rating: 5
                                        display_text: >-
                                          These socks are comfortable, flexible
                                          and soft. I am picky about socks, but
                                          these have been my jam.  I have about 30
                                          pairs of socks and yet I grab a pair of
                                          these to wear every day. Also the colors
                                          are perfect for my fall & winter outfits
                                          and booties.  I recommend!
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1762282888652'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              These socks are comfortable, flexible
                                              and soft. I am picky about socks, but
                                              these have been my jam.  I have about 30
                                              pairs of socks and yet I grab a pair of
                                              these to wear every day. Also the colors
                                              are perfect for my fall & winter outfits
                                              and booties.  I recommend!
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f6bdc82d21cc4d4ba92d9422a8186f78~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5b57be6468a34ad7afd9a09fb843fdf7~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 6d ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: Coco at 60
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/278952b4e62974bef7390382e6de6e9e~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=44bea991&x-expires=1763031600&x-signature=dq2VRlNf4EyhL6tfD%2B%2FcrhDvhSk%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/278952b4e62974bef7390382e6de6e9e~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=40169538&x-expires=1763031600&x-signature=kcOMzPaKZHBMAGOXfuOjw8RBcDM%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/278952b4e62974bef7390382e6de6e9e~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=47ed4914&x-expires=1763031600&x-signature=3c%2BHiRSEk0fDPlzMOQgOdD%2BS%2BcQ%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/6982531802566329349?sec_uid=MS4wLjABAAAAysh314sZ2N1nXP-vR1x2oMfgK0Eg21aQiOpNgmO2XE1XRL2Wne0k6QiTnKVtecbi&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7566743270467634957'
                                        rating: 5
                                        display_text: >-
                                          These socks are sooooo soft and cozy! I
                                          am a U.S. size 8, and these fit
                                          perfectly! These socks look super cute,
                                          especially with Ugg (or Ugg-like)
                                          platforms! My lighting makes the middle
                                          pair look green, but they are definitely
                                          a beige color. You NEED these for fall
                                          and winter!
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1761769714889'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              These socks are sooooo soft and cozy! I
                                              am a U.S. size 8, and these fit
                                              perfectly! These socks look super cute,
                                              especially with Ugg (or Ugg-like)
                                              platforms! My lighting makes the middle
                                              pair look green, but they are definitely
                                              a beige color. You NEED these for fall
                                              and winter!
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fc6db5cac736472eb0aa1f1b27aeeb1c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/941ab2aee2e647c58865ec374f6952ee~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 1w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: Life of a Show Kitty 🎉(TV)
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/662ab9f340ac0d02d39164b9baf175c0~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=8c9b8a1d&x-expires=1763031600&x-signature=UnKzEeMhPuS64iP1ZpyPhdRHMbc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/662ab9f340ac0d02d39164b9baf175c0~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=6849537e&x-expires=1763031600&x-signature=gwwEPzg5iCRCpzRm%2FuYnYAc04rc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/662ab9f340ac0d02d39164b9baf175c0~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=a8553d14&x-expires=1763031600&x-signature=bd3Iztm8FCBmvtQxKBhgSpDnnsc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/6989716815598339078?sec_uid=MS4wLjABAAAArUReKbjOVt5vJikdJf-7dFif19Uj-EZU0Gp99LUj4-W-PTFs_PaNfaBd-3AijFN_&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7558164047720482574'
                                        rating: 5
                                        display_text: >-
                                          Love these socks. They looked perfect
                                          for my needs in the photo and were even
                                          better when I got them in person. Soft,
                                          perfect height up the leg to wear with
                                          my clogs, birks, even sneakers. I didn't
                                          want to thick in the foot so I could
                                          wear easily with my shoes, but yet they
                                          are thick enough to be very soft and
                                          cozy. I am planning to purchase more for
                                          Christmas gifts. Shipping was super
                                          fast. Terrific value for the money. Oh,
                                          and they washed nicely, no issues.
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1759772211376'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              Love these socks. They looked perfect
                                              for my needs in the photo and were even
                                              better when I got them in person. Soft,
                                              perfect height up the leg to wear with
                                              my clogs, birks, even sneakers. I didn't
                                              want to thick in the foot so I could
                                              wear easily with my shoes, but yet they
                                              are thick enough to be very soft and
                                              cozy. I am planning to purchase more for
                                              Christmas gifts. Shipping was super
                                              fast. Terrific value for the money. Oh,
                                              and they washed nicely, no issues.
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/be4e0975c243406181bff049ff86805c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/066b060125f14a45b1faea207cc7e55c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: October 6, 2025
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: Muchet18
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e280382281c767414f90c4b8c4cec2cc~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=0c00a375&x-expires=1763031600&x-signature=SXPB%2Fv4E8ltKK%2BByBuoe3hLhgmY%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e280382281c767414f90c4b8c4cec2cc~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=574e288f&x-expires=1763031600&x-signature=LZw2bNE8ilSzd8LbLs1TQ9TdI0c%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e280382281c767414f90c4b8c4cec2cc~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=dfd06e07&x-expires=1763031600&x-signature=Hr0KKo4N5fFnDlTYswSP1QMWRkw%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/7435795878734283818?sec_uid=MS4wLjABAAAAtp4QjddsawEJ2hp-o84f_LK04Na9zcINwQXaayKeeyFQpDWrafYUY3zu9gARPOsT&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7566873582098220814'
                                        rating: 5
                                        display_text: >-
                                          I love these. They fit well and are
                                          super soft! They look amazing with my
                                          leggings and clogs! I would highly
                                          recommend these for fall and winter.
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1761800067651'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              I love these. They fit well and are
                                              super soft! They look amazing with my
                                              leggings and clogs! I would highly
                                              recommend these for fall and winter.
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/acfe27bd0cd64059ba4d4b7d952615fa~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/390d4f7802d04033bb347e04df1b50d9~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 1w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: AmyFromMississippi (Gen X)
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/373b48aae1cede8298c850e8a391db33~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=bc7476a3&x-expires=1763031600&x-signature=zZ4CuzSwA0KHvnmyDkDkTlukWY0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/373b48aae1cede8298c850e8a391db33~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=ada809d9&x-expires=1763031600&x-signature=Z0huasK7dJ0AqdJQGLR1o5z6KhI%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/373b48aae1cede8298c850e8a391db33~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=71c11aa5&x-expires=1763031600&x-signature=HBC9ProB2DqKKqdUrJorN%2Bw%2F41Y%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/7410350773022999582?sec_uid=MS4wLjABAAAA17NddwhDob9d70-BTk0fIEOsUkk0cd1z7HXkLB6hAw5Q7zP8duYedHSCLCWmN0q9&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7566012984913872695'
                                        rating: 5
                                        display_text: >-
                                          These are the perfect boot socks! They
                                          are warm without being too thick and
                                          tall enough to wear with combat style
                                          boots. I plan on buying more for gifts.
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1761599677741'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              These are the perfect boot socks! They
                                              are warm without being too thick and
                                              tall enough to wear with combat style
                                              boots. I plan on buying more for gifts.
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ca80b4cebeb34fff850b80df75975f65~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4e28f650b23044b4ba84cb25fdbac763~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 2w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: Rocco’s mom
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/38f37a40993c7d7fc21f9828dfab961c~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=d5ad559e&x-expires=1763031600&x-signature=URAi7Eiu2tdUizd0McgYZmYTsPQ%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/38f37a40993c7d7fc21f9828dfab961c~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=22cd0941&x-expires=1763031600&x-signature=sO%2BPaFzZhUY1Dw6NvKFcJVCkY2Q%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/38f37a40993c7d7fc21f9828dfab961c~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=798df0d4&x-expires=1763031600&x-signature=XyzzkGCvL7WlDDvvMaFAGestsUw%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/6649802683127726085?sec_uid=MS4wLjABAAAA5tNeFFNqLzB1on-VKlc-jC9wS1yg60_uCBZE1tLNqH8xYykeKEsZl1gNBd8a54vq&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7568251513315837710'
                                        rating: 5
                                        display_text: >-
                                          They fit me nicely and I’m size 8.5 and
                                          they was super soft too. I love the
                                          colors too! Definitely buy again maybe
                                          as a gift for someone!
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1762120888903'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              They fit me nicely and I’m size 8.5 and
                                              they was super soft too. I love the
                                              colors too! Definitely buy again maybe
                                              as a gift for someone!
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f10079dfd69456eb4e9c17304b82fab~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/fee18d6383e847ecac4d961c4a6c72c2~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 1w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: R**8
                                      is_owner: false
                                      is_anonymous: true
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7567818399466473230'
                                        rating: 5
                                        display_text: >-
                                          Most definitely would purchase these
                                          again! They are so comfortable! Love the
                                          variety of colors and so affordable!
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1762020052220'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              Most definitely would purchase these
                                              again! They are so comfortable! Love the
                                              variety of colors and so affordable!
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5c1f8dfbaa96402fabebde46c2818a5a~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1cd00a0dfc084385bde2bc903d62d4da~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2b7755e5ebaf4e0896e9b7910b9c7eb8~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 1w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: Samantha
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/23e144e4f81a627f6d7c5795f85251cb~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=b18837ae&x-expires=1763031600&x-signature=w%2FgANJKKsWe1rrIruwtJn3vhlDc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/23e144e4f81a627f6d7c5795f85251cb~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=b4409ea4&x-expires=1763031600&x-signature=vkSt8AvMjXaoSQRHf8CwwnJ5%2Fx0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/23e144e4f81a627f6d7c5795f85251cb~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=a974c223&x-expires=1763031600&x-signature=QAaycGhDdHoOw1lWSXI2PwhQ8hk%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/6591563829880651782?sec_uid=MS4wLjABAAAAqYzxLYJsqasgTK_bP3YUmZCrImCdFMLzbvJOIJ0gI1jLfkfV4K8s62C1KLihsUwX&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7563808779024942903'
                                        rating: 5
                                        display_text: >-
                                          Excelente calidad. Muy bonitos colores y
                                          muy cómodas. Se sienten suaves y
                                          protegen muy bien del frío.

                                          Calidad del producto: 10/10
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1761086485570'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              Excelente calidad. Muy bonitos colores y
                                              muy cómodas. Se sienten suaves y
                                              protegen muy bien del frío.
                                          - text_type: 2
                                            tag_key: Calidad del producto
                                            tag_text: 10/10
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d7274de57dfe46ffbc0f7443aa701ec2~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f32e10e7b9a40aab41c1d384ef9abd0~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e8a2bf8df4fd41f287b28f2f572bf76b~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 2w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: A**i
                                      is_owner: false
                                      is_anonymous: true
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7562939966104373006'
                                        rating: 5
                                        display_text: >-
                                          These socks are so comfortable and soft
                                          I love all the colors very good quality
                                        images:
                                          - thumb_url_list:
                                              - >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/e4c3f7f4b1904417874fd4e0077b1751_1760884084~tplv-noop.image?t=9276707c&x-expires=1762881500&x-signature=qpDADLPZi2eoWKwQ4hSNbZ1d0ok%3D
                                            url_list:
                                              - >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/e4c3f7f4b1904417874fd4e0077b1751_1760884084~tplv-noop.image?t=9276707c&x-expires=1762881500&x-signature=qpDADLPZi2eoWKwQ4hSNbZ1d0ok%3D
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1760884194557'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              These socks are so comfortable and soft
                                              I love all the colors very good quality
                                        media:
                                          - media_type: 2
                                            video:
                                              id: v12797gd0002d3qfaqvog65g1djq1p10
                                              duration: 27.377
                                              post_url: >-
                                                https://p16-sign.tiktokcdn-us.com/tos-useast5-p-10135-tx/e4c3f7f4b1904417874fd4e0077b1751_1760884084~tplv-noop.image?t=9276707c&x-expires=1762881500&x-signature=qpDADLPZi2eoWKwQ4hSNbZ1d0ok%3D
                                              media_type: video
                                              video_infos:
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/91133c5adc8ff619528925ef347d816b/69136fdc/video/tos/useast5/tos-useast5-ve-10135-tx/oUmpE9gIErDJ9SCFPtBsHo6VgCFDd5gSQfvyfB/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=682&bt=341&cs=0&ds=1&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=NTtmZzQzZGQzZTo4ZzllZEBpM3N0Z2o5cnRpNjUzZzo6NEBgYTItMC80NTQxYi1gMTNgYSMuLmcuMmRzXm5hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/d195361a775ce1a28e12ad7d7435bcac/69136fdc/video/tos/useast5/tos-useast5-ve-10135-tx/oUmpE9gIErDJ9SCFPtBsHo6VgCFDd5gSQfvyfB/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=682&bt=341&cs=0&ds=1&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=NTtmZzQzZGQzZTo4ZzllZEBpM3N0Z2o5cnRpNjUzZzo6NEBgYTItMC80NTQxYi1gMTNgYSMuLmcuMmRzXm5hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  url_expire: 1762881500
                                                  width: 360
                                                  height: 640
                                                  file_hash: c3ce964915dd184e72c1c5ee1ade4207
                                                  format: mp4
                                                  size: 1196819
                                                  bitrate: 349729
                                                  video_quality: normal
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/a433df518fbd1b5044ca8c4798188e1d/69136fdc/video/tos/useast5/tos-useast5-ve-10135-tx/oAulIeepDA62GPHRA6AInXFI6O0LgMeZjkrLkf/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=1132&bt=566&cs=0&ds=2&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=NTZnMzo3PDY2aWQ6NDg3PEBpM3N0Z2o5cnRpNjUzZzo6NEAuMmFiYS5fNWMxMi82NDAtYSMuLmcuMmRzXm5hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/2f1f4c763c5e0ded8ec5427dcefbe7ea/69136fdc/video/tos/useast5/tos-useast5-ve-10135-tx/oAulIeepDA62GPHRA6AInXFI6O0LgMeZjkrLkf/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=1132&bt=566&cs=0&ds=2&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=NTZnMzo3PDY2aWQ6NDg3PEBpM3N0Z2o5cnRpNjUzZzo6NEAuMmFiYS5fNWMxMi82NDAtYSMuLmcuMmRzXm5hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  url_expire: 1762881500
                                                  width: 480
                                                  height: 854
                                                  file_hash: 215d4e69bc3ab154095f0c730e2c2a00
                                                  format: mp4
                                                  size: 1985745
                                                  bitrate: 580266
                                                  video_quality: normal
                                                - main_url: >-
                                                    https://v16m.tiktokcdn-us.com/e4215f57494c27baa317d2da076bf885/69136fdc/video/tos/useast5/tos-useast5-ve-10135-tx/o8DuQf5sDDDoFbe5r0E9PEIY9BSEFCgggMdRVJ/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=2048&bt=1024&cs=0&ds=3&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=aTZoZjgzZjc0OjQ7PDM6OUBpM3N0Z2o5cnRpNjUzZzo6NEAtXjQxNTA1XjQxNS01Mi9jYSMuLmcuMmRzXm5hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  backup_url: >-
                                                    https://v19.tiktokcdn-us.com/d3f4148daed74b3b59acf8a0210c917e/69136fdc/video/tos/useast5/tos-useast5-ve-10135-tx/o8DuQf5sDDDoFbe5r0E9PEIY9BSEFCgggMdRVJ/?a=1233&bti=PDM8QDI2M2A%3D&ch=0&cr=0&dr=0&cd=0%7C0%7C0%7C0&br=2048&bt=1024&cs=0&ds=3&ft=GSDrKInz7ThOPI9PXq8Zmo&mime_type=video_mp4&qs=0&rc=aTZoZjgzZjc0OjQ7PDM6OUBpM3N0Z2o5cnRpNjUzZzo6NEAtXjQxNTA1XjQxNS01Mi9jYSMuLmcuMmRzXm5hLS1kNi9zcw%3D%3D&vvpl=1&l=20251111111753038C2A378A169C020D89&btag=e000b8000
                                                  url_expire: 1762881500
                                                  width: 720
                                                  height: 1280
                                                  file_hash: 0b1ad32299b9eb051443d9f0e9cc9b62
                                                  format: mp4
                                                  size: 3588914
                                                  bitrate: 1048738
                                                  video_quality: normal
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5bddc018074d4f7baeb68c937a688c5c~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 3w ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: ____Elle🥰🇭🇹
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/3e5f197c7955b3922960f1c039bec1f3~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=1a7f75fa&x-expires=1763031600&x-signature=fnxV9UITO0nsPEhwGK8UdPE5C7A%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/3e5f197c7955b3922960f1c039bec1f3~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=03910d9f&x-expires=1763031600&x-signature=eJ4pwZTF%2BTS706PUzh9BNcx4tUM%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/3e5f197c7955b3922960f1c039bec1f3~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=569b5d67&x-expires=1763031600&x-signature=2zenittVNMPty3VGOQzorsHMgz0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/7494019263515624494?sec_uid=MS4wLjABAAAAj06sfFCR1-7uHOHiYtqSSc1xVUxSis7sjpwm6N1rASVwEDk3e0f-yojo4ovuf_5B&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                    - review:
                                        review_id: '7568918632894891790'
                                        rating: 5
                                        display_text: >-
                                          I absolutely love these socks,they are
                                          nice& thick & soft..I just ordered more
                                          as soon as I received this order& will
                                          most likely buy again
                                        images:
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - height: 1200
                                            width: 1200
                                            thumb_uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a
                                            thumb_url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                            uri: >-
                                              tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a
                                            url_list:
                                              - >-
                                                https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              - >-
                                                https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp: '1762276221535'
                                        has_origin_text: true
                                        display_review_text:
                                          - text_type: 1
                                            plain_text: >-
                                              I absolutely love these socks,they are
                                              nice& thick & soft..I just ordered more
                                              as soon as I received this order& will
                                              most likely buy again
                                        media:
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f8f7071111604366b373a59cfa32a558~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - media_type: 1
                                            image:
                                              height: 1200
                                              width: 1200
                                              thumb_uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a
                                              thumb_url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a~tplv-fhlh96nyum-resize-jpeg:350:350.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                              uri: >-
                                                tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a
                                              url_list:
                                                - >-
                                                  https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                                - >-
                                                  https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8c6b85c5c63b424597b03ef80aa8345a~tplv-fhlh96nyum-resize-jpeg:1200:1200.jpeg?dr=12186&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                        review_timestamp_fmt: 6d ago
                                        main_review_title: ''
                                      sku_id: '1731687677700706384'
                                      sku_specification: 'Item: Multicolor, EU36-39'
                                      review_user:
                                        name: sherry
                                        avatar:
                                          url_list:
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/ace721f361261f85c158320c22bdcf67~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=18540cbd&x-expires=1763031600&x-signature=conGoVBxT8wPLz3vq7hlpWrx5n8%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/ace721f361261f85c158320c22bdcf67~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=fa96ed52&x-expires=1763031600&x-signature=hm%2BxmVRYxC5%2BN9shambx2x0C6pc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                            - >-
                                              https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/ace721f361261f85c158320c22bdcf67~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=78205923&x-expires=1763031600&x-signature=CB1pCvF38LqhTZSdrUgQhC79AZA%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                        link: >-
                                          aweme://user/profile/6886994052508632069?sec_uid=MS4wLjABAAAAPTKjoDBXq0iPZ-i-0MPDTWRYP8q6n8vIzl0wM6vlljJjYWSDY1DqVLAW9ereXytR&from_scene=8
                                      is_owner: false
                                      is_anonymous: false
                                      review_source_type: 0
                                      review_source_name: Purchased on TikTok
                                      link: ''
                                      is_updated: false
                                      third_party_popup_title: ''
                                      third_party_popup_content: ''
                                      third_party_popup_button_text: ''
                                  review_count_str: 3.7k
                                  review_count_str_v2: 3,658
                                customer_service_schema: aweme://ec/customer_support
                                chain_key: ''
                                add_to_cart_button:
                                  status: 2
                                  click_hint: ''
                                seller_id: '7495397146634455120'
                                platform: 5
                                source: TikTok Shop
                                source_from: 3
                                extra:
                                  mix_product_type: '0'
                                default_address_id: '0'
                                template: 1
                                marketing_config:
                                  remove_price_str: true
                                  show_deduction_text: false
                                shipping:
                                  logistics:
                                    - delivery_option: 1
                                      delivery_name: Standard shipping
                                      is_default: false
                                      reachable: true
                                      lead_time: Nov 17 - Nov 22
                                      shipping_fee:
                                        price_str: $0.00
                                        price_val: '0'
                                        currency: USD
                                      free_shipping: true
                                      logistic_text: {}
                                      logistics_service_id: '7480241405839968042'
                                      with_voucher: false
                                      delivery_min_days: 6
                                      delivery_max_days: 11
                                      logistic_promotion: {}
                                      event_tracking:
                                        is_next_day_delivery: '0'
                                        is_late_guarantee: '0'
                                        est_delivery_bday_min: '4'
                                        delivery_type: 4pl
                                        shipping_price: '0'
                                        is_1_day_shipping: '0'
                                        shipping_currency: USD
                                        est_logistic_delivery_day_min: '0'
                                        ship_from: local
                                        est_logistic_delivery_day_max: '0'
                                        shipping_type: standard
                                        shipping_price_after_coupon: '0'
                                        shipping_price_origin: '4.62'
                                        est_delivery_day_max: '11'
                                        est_delivery_day_min: '6'
                                        is_display_fastest: '0'
                                        is_instant_tag: '0'
                                      original_shipping_val: '4.62'
                                      transit_delivery_min_days: 0
                                      transit_delivery_max_days: 0
                                      leadtime_display_strategy:
                                        display_edt: true
                                        display_tts_delivery: false
                                      cod_available: false
                                  shipping_to_address_info:
                                    no_ship_to_addr: true
                                    ship_to_button_text: Select
                                    ship_to_address_brief: Choose shipping address
                                  ship_from_info: {}
                                sku_style: 1
                                terms_of_service:
                                  draft_id: tiktok_shop_buyer_tos
                                  support_language:
                                    - en
                                    - id
                                    - vi
                                    - th
                                privacy_policy:
                                  draft_id: tiktok_shop_buyer_pp
                                  support_language:
                                    - en
                                    - id
                                    - vi
                                    - th
                                biz_type: 0
                                pdp_logistic_module:
                                  module_id: tts_us_v2
                                  meta:
                                    pdp_to_logistic_list_info: >-
                                      {"ship_from_info":{},"sku_info":{"product_id":"1731687611898499152","sku_id":"1731687677700706384","price_val":"11.99","currency":"USD"},"biz_type":0,"seller_id":"7495397146634455120","sku_additional_info_on_refresh":[{"SkuID":"1731687677700706384","SkuPrice":{"real_price":{"price_str":"$11.99","price_val":"11.99","currency":"USD"}}}],"pass_through_product_highlight":{}}
                                  module_title: Shipping & returns
                                  shipping_module:
                                    title: Estimated delivery Nov 17 – 22 · Free
                                    description_list:
                                      - template: Choose shipping address
                                        text_color: '#8F000000'
                                        text_dark_color: '#99FFFFFF'
                                    description_list_arrow:
                                      icon:
                                        height: 48
                                        width: 48
                                        uri: >-
                                          tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr.png
                                        url_list:
                                          - >-
                                            https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - >-
                                            https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                      icon_dark:
                                        height: 48
                                        width: 48
                                        uri: >-
                                          tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr_dark.png
                                        url_list:
                                          - >-
                                            https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - >-
                                            https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                    meta:
                                      delivery_info: >-
                                        {"shipping_type":"standard","est_delivery_day_min":"6","est_delivery_day_max":"11","shipping_currency":"USD","shipping_price":"0"}
                                      delivery_flag: >-
                                        {"est_delivery_day_min":"6","shipping_price":"0","ship_from":"local","is_display_fastest":"0","is_3_day_delivery":"0","is_display_shipping_out_time":"0","is_delay_compensation_show":"0","is_back_order":"0","is_1_day_shipping":"0","is_instant_tag":"0","shipping_type":"standard","pdp_shipping_status":"1","est_delivery_bday_min":"4","delivery_type":"4pl","is_late_guarantee":"0","is_display_est_shipping_day":"1","is_2_day_delivery":"0","est_delivery_day_max":"11","shipping_currency":"USD","est_logistic_delivery_day_min":"0","est_logistic_delivery_day_max":"0","shipping_price_after_coupon":"0","shipping_price_origin":"4.62","is_next_day_delivery":"0"}
                                      edt_type: lead_time
                                  return_policy_module:
                                    title: Return policy
                                    description_list_arrow:
                                      icon:
                                        height: 48
                                        width: 48
                                        uri: >-
                                          tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr.png
                                        url_list:
                                          - >-
                                            https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - >-
                                            https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                      icon_dark:
                                        height: 48
                                        width: 48
                                        uri: >-
                                          tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr_dark.png
                                        url_list:
                                          - >-
                                            https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                          - >-
                                            https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/chevron_right_offset_small_ltr_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=607f11de&idc=useast5&from=1826719393
                                default_sku_id: '1731687677700706384'
                                is_platform_product: false
                              review_info:
                                has_more: true
                                total_reviews: '3658'
                                product_reviews:
                                  - review_id: '7564093826441447182'
                                    product_id: '1731687611898499152'
                                    sku_id: '1731687677700706384'
                                    reviewer_id: '7419006180699145262'
                                    review_rating: 5
                                    review_time: '1761152836338'
                                    is_verified_purchase: true
                                    is_incentivized_review: false
                                    product_name: >-
                                      Nyzfexk Women's Solid Mid-calf Socks,
                                      Casual Soft Comfy Warm Socks for Fall &
                                      Winter, Women's Socks for Daily Wear
                                    reviewer_name: A**e W**t
                                    reviewer_avatar_url: >-
                                      https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/3e2c86304d98e5424de77717edf00956~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=26035084&x-expires=1763031600&x-signature=rclj1%2FEsKFI7OUKt53HOERGtQKc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                    review_text: >-
                                      So cozy! Great quality! Lots of stretch.
                                      Neutral colors that go with everything!
                                      I’m ordering more!
                                    display_image_url: >-
                                      https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                    review_images:
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0626954e41204073a3422384907579cb~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/88c02b26ab4746c490c30d06c06aa947~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/4f1c6530637f43c880453e73a89c6f2e~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                    sku_specification: Multicolor, EU36-39
                                    review_country: US
                                  - review_id: '7568910471252707086'
                                    product_id: '1731687611898499152'
                                    sku_id: '1731687677700706384'
                                    reviewer_id: '7560447685657609229'
                                    review_rating: 5
                                    review_time: '1762274311227'
                                    is_verified_purchase: true
                                    is_incentivized_review: true
                                    product_name: >-
                                      Nyzfexk Women's Solid Mid-calf Socks,
                                      Casual Soft Comfy Warm Socks for Fall &
                                      Winter, Women's Socks for Daily Wear
                                    reviewer_name: V**a R**s
                                    reviewer_avatar_url: >-
                                      https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/a0fd1aedfe38a1f44ca816cb4a9c3b35~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=7c9d53b2&x-expires=1763031600&x-signature=zW1F3SdAT9txXcrAdoRSrf625Cg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                    review_text: >-
                                      Super buenas encargue 2 paquetes y voy x
                                      otro más!!!! Super calientitas y gran
                                      canlidad
                                    display_image_url: >-
                                      https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ef153ef139a24a28b7f8791c8a1cc594~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                    review_images:
                                      - >-
                                        https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ef153ef139a24a28b7f8791c8a1cc594~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/bba7a1c2b042452cb94b8f1d719f2e58~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/db80c607a33946cdaecccbba77dae5a1~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/467122dbf28e4711a69e96835a630f72~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                    sku_specification: Multicolor, EU36-39
                                    review_country: US
                                  - review_id: '7563817090763982605'
                                    product_id: '1731687611898499152'
                                    sku_id: '1731687677700706384'
                                    reviewer_id: '7309641721431295018'
                                    review_rating: 5
                                    review_time: '1761088419793'
                                    is_verified_purchase: true
                                    is_incentivized_review: true
                                    product_name: >-
                                      Nyzfexk Women's Solid Mid-calf Socks,
                                      Casual Soft Comfy Warm Socks for Fall &
                                      Winter, Women's Socks for Daily Wear
                                    reviewer_name: N**i
                                    reviewer_avatar_url: >-
                                      https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/a8a302595fb8007a31c1e79c7fbf9a50~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=163e70bf&x-expires=1763031600&x-signature=TvVIs0p2a94RuXwy1jHmVnjUG0U%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5
                                    review_text: >-
                                      Ame estas medias la verdad son bien buenas
                                      calientes y de muy buena calidad preciosas
                                      para esta temporada y la de invierno le
                                      doy un 10/10
                                    display_image_url: >-
                                      https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7b150aa05e3b4163bb542a16fb83a559~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                    review_images:
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7b150aa05e3b4163bb542a16fb83a559~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8fb65c088ee8453cb9adf8d5d53389fc~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast5&from=2378011839
                                    sku_specification: Multicolor, EU36-39
                                    review_country: US
                                review_ratings:
                                  review_count: '3658'
                                  overall_score: 4.9
                                  rating_result:
                                    '1': '21'
                                    '2': '20'
                                    '3': '52'
                                    '4': '165'
                                    '5': '3359'
                              shop_info:
                                seller_id: '7495397146634455120'
                                sold_count: 250286
                                on_sell_product_count: 61
                                review_count: 15522
                                global_seller_id: '7495397146634455120'
                                global_sold_count: '250286'
                                followers_count: '3058'
                                video_count: '10'
                                enable_follow: true
                                shop_name: Nyzfexk INC
                                shop_logo:
                                  height: 300
                                  width: 300
                                  uri: >-
                                    tos-useast5-i-omjb5zjo8w-tx/d05ac364c9d54138bd4624a25a1b964b
                                  url_list:
                                    - >-
                                      https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d05ac364c9d54138bd4624a25a1b964b~tplv-fhlh96nyum-resize-webp:300:300.webp?dr=12185&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                    - >-
                                      https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d05ac364c9d54138bd4624a25a1b964b~tplv-fhlh96nyum-resize-webp:300:300.webp?dr=12185&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                shop_rating: '4.5'
                                shop_link: >-
                                  https://www.tiktok.com/shop/store/nyzfexk-inc/7495397146634455120
                                background:
                                  is_default: true
                                  image:
                                    height: 300
                                    width: 300
                                    uri: >-
                                      tos-useast5-i-omjb5zjo8w-tx/d05ac364c9d54138bd4624a25a1b964b
                                    url_list:
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d05ac364c9d54138bd4624a25a1b964b~tplv-fhlh96nyum-resize-webp:300:300.webp?dr=12185&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                      - >-
                                        https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d05ac364c9d54138bd4624a25a1b964b~tplv-fhlh96nyum-resize-webp:300:300.webp?dr=12185&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                  shop_background_type: 3
                                format_sold_count: 250.2K+
                                region: US
                                display_on_sell_product_count: '61'
                                format_global_sold_count: 250.2K+
                                format_followers_count: 3.0K+
                                format_video_count: '10'
                                store_sub_score:
                                  - score: 0.9575371549893843
                                    type: 1
                                    score_percentage: '96'
                                    high_light_tag: 1
                                    platform_rate_type: 0
                                  - score: 0.4075550977532559
                                    type: 2
                                    score_percentage: '41'
                                    high_light_tag: 0
                                    platform_rate_type: 0
                                  - score: 0.8727
                                    type: 3
                                    score_percentage: '87'
                                    platform_rate_type: 0
                                worst_rating: '0'
                                best_rating: '5'
                                creator_name: Nyzfexk INC
                                shop_identity_label:
                                  label_type: 4
                                  identity_label_text: Gold Star Seller
                                  identity_logo_light:
                                    height: 144
                                    width: 144
                                    ratio: 0
                                    minetype: image/png
                                    uri: >-
                                      tos-useast5-i-omjb5zjo8w-tx/06d3626726114510b9b73de21d9e0ae2
                                    url_list:
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/06d3626726114510b9b73de21d9e0ae2~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                      - >-
                                        https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/06d3626726114510b9b73de21d9e0ae2~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                  identity_logo_dark:
                                    height: 144
                                    width: 144
                                    ratio: 0
                                    minetype: image/png
                                    uri: >-
                                      tos-useast5-i-omjb5zjo8w-tx/906841c6ffce4faa874a7dab54e112bf
                                    url_list:
                                      - >-
                                        https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/906841c6ffce4faa874a7dab54e112bf~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                      - >-
                                        https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/906841c6ffce4faa874a7dab54e112bf~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                  identity_label_bg_color_light: '#F7EDE2'
                                  identity_label_bg_color_dark: '#F7EDE2'
                                  identity_label_text_color_light: '#B67A06'
                                  identity_label_text_color_dark: '#B67A06'
                                  shop_explanation_page_schema: >-
                                    aweme://lynxview_popup?url=https%3A%2F%2Flf16-gecko-source.tiktokcdn.com%2Fobj%2Fbyte-gurd-source-sg%2Ftiktok%2Ffe%2Flive%2Ftiktok_ecommerce_mall_brand_explanation_runtime%2Fseller-explanation-page%2Ftemplate.js&use_new_container=1&use_spark=1&target_handler=webcast%2Cecom&trans_status_bar=1&hide_nav_bar=1&status_font_mode=light&enable_prefetch=1&enable_code_cache=1&show_mask=1&mask_bg_color=00000080&height_percent=90&bdhm_bid=astro_behavior_lynx&btm_page_code=b7749&enable_lynx_prefetch=1&enable_pull_down_close=1&radius=12&transition_animation=bottom&seller_id=7495397146634455120
                                  label_without_bg_style:
                                    identity_label_text: Gold Star Seller
                                    identity_logo_light:
                                      height: 144
                                      width: 144
                                      ratio: 0
                                      minetype: image/png
                                      uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/b07395c02df248a3bfe4362a59bf4131
                                      url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b07395c02df248a3bfe4362a59bf4131~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b07395c02df248a3bfe4362a59bf4131~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                    identity_logo_dark:
                                      height: 144
                                      width: 144
                                      ratio: 0
                                      minetype: image/png
                                      uri: >-
                                        tos-useast5-i-omjb5zjo8w-tx/eee6ca5f2ff64bb4b30f86e1a0f2e0ee
                                      url_list:
                                        - >-
                                          https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/eee6ca5f2ff64bb4b30f86e1a0f2e0ee~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                        - >-
                                          https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/eee6ca5f2ff64bb4b30f86e1a0f2e0ee~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=607f11de&idc=useast5&from=2422056039
                                    identity_label_text_color_light: '#B67A06'
                                    identity_label_text_color_dark: '#FFC644'
                                    style_type: 2
                                  brand_info:
                                    is_brand: false
                                    brand_style_list: []
                                  ShopIdentityLabelKey: gold
                                desc: >-
                                  Shop Nyzfexk INC on TikTok Shop! 250.2K+ sold,
                                  3.0K+ followers. 87+% positive feedback. 41+%
                                  Ships in 48h, 96+% replies in 24h. Join the
                                  trend!
                          - component_type: product_gmc_price
                            component_name: product_gmc_price
                            fe_config:
                              data_source:
                                need_split_request: true
                                need_product_info: true
                                need_fetch_at_first_screen: true
                          - component_type: shop_info
                            component_name: shop_info
                            fe_config:
                              data_source:
                                need_split_request: true
                                need_product_info: true
                                need_fetch_at_first_screen: true
                          - component_type: alternative_product
                            component_name: alternative_product
                            fe_config:
                              data_source:
                                need_split_request: true
                                need_product_info: true
                                need_fetch_at_first_screen: true
                          - component_type: top_reviewed_products
                            component_name: top_reviewed_products
                            fe_config:
                              title: Shop review
                              data_source:
                                need_split_request: true
                                need_product_info: true
                                need_fetch_at_first_screen: false
                          - component_type: video_list
                            component_name: video_list
                            fe_config:
                              data_source:
                                need_split_request: true
                                need_product_info: true
                          - component_type: feed_list
                            component_name: feed_list_more_from
                            fe_config:
                              title: Explore more from {s_shopName}
                              data_source:
                                type: more_from
                                need_split_request: true
                                need_product_seller_id: true
                                need_product_info: true
                                params:
                                  count: 10
                                  shop_page: 2
                                  product_component: 3
                              is_horizontal_direction: true
                          - component_type: feed_list
                            component_name: feed_list_you_may_like
                            fe_config:
                              title: You may also like
                              data_source:
                                type: recommended_for_you
                                params:
                                  count: 30
                                  shop_page: 2
                                  product_component: 9
                                need_load_more: true
                              is_horizontal_direction: false
                          - component_type: related_link
                            component_name: related_link
                            fe_config:
                              title: People also searched for
                              data_source:
                                type: product_to_keyword
                          - component_type: expose_pool
                            component_name: expose_pool
                            fe_config:
                              title: Discover
                        global_data:
                          product_info:
                            error_code: 0
                            categories:
                              - category_id: '601152'
                                level: 1
                                is_leaf: false
                                parent_id: '0'
                                category_name: Womenswear & Underwear
                                name_key: magellan_601152
                              - category_id: '842888'
                                level: 2
                                is_leaf: false
                                parent_id: '601152'
                                category_name: Women's Underwear
                                name_key: magellan_842888
                              - category_id: '845448'
                                level: 3
                                is_leaf: false
                                parent_id: '842888'
                                category_name: Socks
                                name_key: magellan_845448
                              - category_id: '896400'
                                level: 4
                                is_leaf: true
                                parent_id: '845448'
                                category_name: Mid-Calf Socks
                                name_key: magellan_896400
                            product_info:
                              seller_id: '7495397146634455120'
                              product_id: '1731687611898499152'
                              status: 1
                  requestId: f9ab90ef-89ea-46f0-bec5-88eeb42df66b
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 400
                  data: null
                  message: 'Missing required parameter: handle'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 401
                  data: null
                  message: apiKey is null
        '402':
          description: Payment Required
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 402
                  data: null
                  message: apiKey quota is not enough
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 429
                  data: null
                  message: qps limit exceeded
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 500
                  data: null
                  message: Internal server error
      deprecated: false
      security:
        - JWT Bearer: []
      x-codeSamples:
        - lang: curl
          label: cURL
          source: |-
            curl --request GET \
              --url 'https://api.keyapi.ai/v1/tiktok/product/detail?product_id=1731687611898499152&region=US' \
              --header 'Authorization: Bearer <YOUR_API_KEY>'
        - lang: python
          label: Python
          source: |-
            import requests

            response = requests.get(
                'https://api.keyapi.ai/v1/tiktok/product/detail',
                params={"product_id": "1731687611898499152", "region": "US"},
                headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
            )
            print(response.json())
        - lang: javascript
          label: JavaScript
          source: >-
            const params = new URLSearchParams({"product_id":
            "1731687611898499152", "region": "US"});


            const response = await
            fetch(`https://api.keyapi.ai/v1/tiktok/product/detail?${params}`, {
              method: 'GET',
              headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
            });

            const data = await response.json();

            console.log(data);
components:
  securitySchemes:
    JWT Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        API key for authentication. Format: `sk_live_xxxxxxxxxxxxx`
        Get your API key from the [Dashboard](http://keyapi.ai/app/dashboard).

````