> ## 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.

# Product Search

> Search TikTok Shop products in real time by keyword. Use offset for subsequent pages.

Product data is returned in data.body.sections[0].items. The search endpoint does not return complete product details. After obtaining product_id from this response, call the product detail endpoint for full details.

Note: real-time endpoints may trigger risk-control checks at any time. If code=500 is returned, retry the request.

<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/realtime/product/search.

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/realtime/product/search

Description: Search TikTok Shop products in real time by keyword. Use offset for subsequent pages. Product data is returned in data.body.sections[0].items. The search endpoint does not return complete product details.

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

Parameters:
- sk (Required): Search keyword. Example: Notebook
- region (Required): Region code. Currently supported: GB, ID, IE, US, DE, JP, IT, FR, MY, MX, ES, BR, SG, TH, PH, VN. Example: MY
- sort_type (Optional): Sort type: 1=PRICE_ASC, 2=PRICE_DESC, 3=BEST_SELLERS, 4=RELEVANCE. Example: 1
- price_range (Optional): Price range filter, for example: 0,100. Example: 0,100
- live (Optional): Include live products. 0=no, 1=yes. Example: 0
- cod (Optional): Include products that support cash on delivery. 0=no, 1=yes. Example: 0
- count (Optional): Number of items to return. Example: 10
- offset (Optional): Pagination offset. Example: 0

Example Response:
{
"code": 0,
"message": "ok",
"data": {
"has_more": 1,
"cursor": 3,
"body": {
  "sections": [
    {
      "items": [
        {
          "item_id": "0;1735080995730523261",
          "data": {
            "raw_data": "{...}"
          }
        }
      ]
    }
  ]
}
},
"requestId": "7562705965742491157e4367807-a19c-46bd-812e-276cb28ec323"
}`)}
    >
      <span>✨</span>
      <span>Copy for AI</span>
    </button>
  </div>
</div>


## OpenAPI

````yaml en/tiktok.openapi.json GET /v1/tiktok/realtime/product/search
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/realtime/product/search:
    get:
      tags:
        - TikTok Shop
      summary: Product Search
      description: >-
        Search TikTok Shop products in real time by keyword. Use offset for
        subsequent pages.


        Product data is returned in data.body.sections[0].items. The search
        endpoint does not return complete product details. After obtaining
        product_id from this response, call the product detail endpoint for full
        details.


        Note: real-time endpoints may trigger risk-control checks at any time.
        If code=500 is returned, retry the request.
      parameters:
        - name: sk
          in: query
          description: Search keyword
          required: true
          example: Notebook
          schema:
            type: string
            example: Notebook
        - name: region
          in: query
          description: >-
            Region code. Currently supported: GB, ID, IE, US, DE, JP, IT, FR,
            MY, MX, ES, BR, SG, TH, PH, VN
          required: true
          example: MY
          schema:
            type: string
            example: MY
        - name: sort_type
          in: query
          description: 'Sort type: 1=PRICE_ASC, 2=PRICE_DESC, 3=BEST_SELLERS, 4=RELEVANCE'
          required: false
          example: '1'
          schema:
            type: string
            example: '1'
        - name: price_range
          in: query
          description: 'Price range filter, for example: 0,100'
          required: false
          example: 0,100
          schema:
            type: string
            example: 0,100
        - name: live
          in: query
          description: Include live products. 0=no, 1=yes
          required: false
          example: '0'
          schema:
            type: string
            example: '0'
        - name: cod
          in: query
          description: Include products that support cash on delivery. 0=no, 1=yes
          required: false
          example: '0'
          schema:
            type: string
            example: '0'
        - name: count
          in: query
          description: Number of items to return
          required: false
          example: '10'
          schema:
            type: string
            example: '10'
        - name: offset
          in: query
          description: Pagination offset
          required: false
          example: '0'
          schema:
            type: string
            example: '0'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties: {}
                example:
                  code: 0
                  message: ok
                  data:
                    section_cursor: 1
                    page_state: 0
                    has_more: 1
                    cursor: 3
                    log_pb:
                      impr_id: 202605182104464A365AF21D90564FDB9E
                    backtrace: ad_cursor%3D3%3Bcurrent_page%3D1%3Bcursor_fusion_items%3D3
                    is_hit_cache: '0'
                    is_non_personalized_search: 0
                    last_search_pid_list: >-
                      ["1735080995730523261","1729425704051509331","1729824615743391411"]
                    return_to_server_content: >-
                      {"to_next_page_param":"{\"PriceSort\":{\"Max\":0,\"Min\":0,\"IsDesc\":false,\"Values\":null,\"PidAndValues\":[{\"Pid\":1735080995730523261,\"OfflineValue\":0.5,\"OnlineValue\":300000},{\"Pid\":1729425704051509331,\"OfflineValue\":0.4000000059604645,\"OnlineValue\":400000},{\"Pid\":1729824615743391411,\"OfflineValue\":0.12999999523162842,\"OnlineValue\":9990000}],\"MinOffline\":0.12999999523162842,\"MaxOffline\":0.5,\"MinOnline\":300000,\"MaxOnline\":9990000},\"SoldSort\":null,\"SortInfo\":{\"PriceSort\":{\"Max\":0,\"Min\":0,\"IsDesc\":false,\"Values\":null,\"PidAndValues\":[{\"Pid\":1735080995730523261,\"OfflineValue\":0.5,\"OnlineValue\":300000},{\"Pid\":1729425704051509331,\"OfflineValue\":0.4000000059604645,\"OnlineValue\":400000},{\"Pid\":1729824615743391411,\"OfflineValue\":0.12999999523162842,\"OnlineValue\":9990000}],\"MinOffline\":0.12999999523162842,\"MaxOffline\":0.5,\"MinOnline\":300000,\"MaxOnline\":9990000},\"SoldSort\":null,\"AverageRatingSort\":null},\"LogId\":\"202605182104464A365AF21D90564FDB9E\",\"ContainLineProduct\":false,\"DebugInfo\":\"\",\"OnceFedReturnDoc\":true,\"LastFilterEmptyReasonByServer\":\"\",\"FilterSessionInfo\":{\"SoFarProductNum\":3,\"HasRecord\":false},\"FilterSessionInfoNoYmal\":{\"SoFarProductNum\":3,\"HasRecord\":false},\"HasMore\":1,\"Cursor\":0,\"IsEmptyDocs\":false}","insert_card_cursor":3,"has_quick_filter":false,"has_navigation_word":false,"has_filter_box":false,"has_filter_group":false,"has_promotion_ng":false,"customize_content_info":"{}"}
                    server_perf_info:
                      server_inner_cost:
                        - name: server_search_provide_inner_total
                          cost: 788
                        - name: server_search_provide
                          cost: 839
                        - name: server_search_produce
                          cost: 363
                        - name: server_search_check
                          cost: 21
                        - name: server_total_first_chunk
                          cost: 1041
                        - name: server_producer_load_not_parallel
                          cost: 358
                        - name: server_search_total
                          cost: 1326
                        - name: server_total_second_chunk
                          cost: 1326
                      server_search_receive_timestamp: '1779109486781'
                      server_search_response_timestamp: '1779109488108'
                      server_search_perf_detail: >-
                        {"ad_0":1,"p2_card_pt":2077252342,"packT_1":2,"adsE":32,"pParams":6,"st_chunk_product_1_pre_images":955,"packT_2":2,"pT_SWrpcp_2":1,"ad_2":1,"lTotal_1":75,"bT":861,"p1_card_pt":2077252342,"pT_SPrpcp_2":1,"paramLoad":86,"p_iR":251,"dc":5,"sPNI":487,"pT_1":82,"st_second_chunk":1327,"p_rF":242,"p_rRG":10,"p_rFG":13,"pT_Lpp_1":82,"pT_Bcfp_1":55,"pT_Bcsp_1":3,"p_inner":788,"p_iT":578,"sPI":538,"sPNet":51,"lTotal_2":358,"ad_1":1,"product_2":358,"p_da":103,"p_rFS":74,"p_rFF":82,"adsSf":6,"pT_Fpp_2":363,"adOpt":0,"chan":1,"product_1":74,"pT_Asf_1":7,"p1_card_at":3,"p2_card_at":3,"pasT":839,"p_rT":265,"p_iA":17,"cursor":0,"pT_2":363,"st_first_chunk":1039,"p2_card_total_size":34904,"p2_card_avg_size":11634}
                      latency_timestamp_data:
                        p2_card_avg_size: 11634
                        p2_card_total_size: 34904
                      module_info:
                        video_ad: 0
                        live_ad: 0
                        related_word: 0
                        goods: 3
                        goods_ad: 0
                        correct_word: 0
                        guide_position: 0
                        activity: 0
                        video: 0
                        live: 0
                        creator: 0
                        shop: 0
                        gs_word: 0
                      client_request_id: >-
                        7562705965742491157e4367807-a19c-46bd-812e-276cb28ec3231779109486537
                    chunk_meta:
                      chunk_name: second_chunk
                      product_pack_type: 2
                    filter_origin_search_id: 202605181304468AAEBFE9E211ACD3AAAA
                    body:
                      sections:
                        - id: 0
                          type: 4
                          section_style:
                            inset:
                              margin_top: 0
                              margin_left: 8
                              margin_bottom: 0
                              margin_right: 8
                            spacing:
                              item_gap_v: 6
                              item_gap_h: 6
                            column: 2
                            is_dynamic_span_size: true
                          is_sticky: false
                          order: 60
                          items:
                            - style: {}
                              item_id: 0;1735080995730523261
                              tech_type: 2
                              biz_type: 1
                              data:
                                height: 340
                                lynx_card_key: search_product_card_v2
                                raw_data: >-
                                  {"type":1,"search_result_id":"1735080995730523261","item_key":"202605182104464A365AF21D90564FDB9E_1735080995730523261_1","view_object":{"commonLogParams":{"adAndPdpLog":{"log_extra":"{\"ad_price\":\"agsObwAKrPxqCw5vAAqs_LDCJgoSTyDyYvoqcw\",\"app_id\":1233,\"country_id\":\"NL\",\"cu_rank\":86,\"device_id\":7562705965742491157,\"ecom_card_type\":1,\"ecom_product_id_list\":[\"\"],\"gmv_max_bid_type\":1,\"gmv_max_session_id\":1863946246804737,\"ingestion_dc\":\"my2\",\"no_roi2_rank\":138,\"no_roi2_send\":3,\"offset\":0,\"priority_region\":\"MY\",\"query\":\"Notebook\",\"req_id\":\"202605182104464A365AF21D90564FDB9E\",\"rit\":11233532,\"roi2_ad_type\":2,\"roi2_alpha\":1,\"search_id\":\"202605182104464A365AF21D90564FDB9E\",\"send_dc\":\"sg\",\"send_likely_vregion\":\"Singapore-Central\",\"send_likely_vregion_type\":\"from_bytetim\",\"spu_id\":1735080995730523261,\"store_region\":\"VN\",\"uid\":7562022668603376658,\"unity_price\":\"agsObwAKrUJqCw5vAAqtQu98YUd3T5vkogygaw\",\"usd_exch_currency\":3,\"user_id\":7562022668603376658,\"ut\":12}"},"adLog":{"author_id":"7494298718519854205","creative_id":"1863947076220961","currency":"RM","entrance_form":"search_pure_goods_card","platform":"5","value":"1863947076220961"},"baseLog":{"bcm_multiverse_id":"202605181304480927045810040000002ff4e39855826e55","impr_id":"202605182104464A365AF21D90564FDB9E","log_pb":"{\"impr_id\":\"202605182104464A365AF21D90564FDB9E\"}","product_card_type":"1","product_da_info":"{}","product_id":"1735080995730523261","search_id":"202605182104464A365AF21D90564FDB9E","search_result_id":"1735080995730523261","search_source":"mall","seller_name":"Golden
                                  Lake
                                  Image","shop_id":"7494298718519854205"},"btmLog":{"chain_param":{"bcm_multiverse_id":"202605181304480927045810040000002ff4e39855826e55"}},"cardLog":{"activity_name":"2","actual_image_height":"400","actual_image_width":"400","author_id":"7494298718519854205","biz_type":"0","currency":"RM","discount_rate":"40%","entrance_form":"search_pure_goods_card","follow_status":"0","image_feature":"null","image_size_type":"1","image_sku_id":"0","intelligent_selection_image_type":"8","is_ad":"0","is_attach_product_card":"0","is_intelligent_selection_main_image":"0","is_intervene":"0","is_kg":"0","is_long_photo":"0","is_multi_intelligent_selling_point":"0","is_recom":"0","is_replace_smart_title":"false","is_show_recommend_type":"0","jump_status":"1","kg_image_types":"","main_image":"https://p16-oec-va.ibyteimg.com/tos-maliva-i-o3syd03w52-us/41e0c3a0ca0f4799978738d296d86023~tplv-o3syd03w52-crop-webp:400:400.webp?dr=15592&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=my2&from=1737278001","main_image_pdp_index":"1","main_image_type":"8","origin_format":"double","origin_image_height":"1024","origin_image_width":"1024","origin_uri":"tos-maliva-i-o3syd03w52-us/41e0c3a0ca0f4799978738d296d86023","platform":"5","product_label":"promotion_sticker_2,warehouse_label_34-34","product_label_info":"[{\"label_type\":34,\"text\":\"Giao
                                  nhanh
                                  24h\"}]","product_price":"0.30","product_price_discount":"40","product_promotion_tag":"{\"ranking\":\"1\",\"label_type\":\"PRICE_TOTAL_DISCOUNT\",\"activity_name\":\"102\",\"has_icon\":\"false\",\"promotion_id\":\"-999\",\"discount_rate\":\"40%\",\"placement\":\"PRODUCT_CARD_TOP_RIGHT\"}|||{\"placement\":\"FREE_SHIPPING\",\"ranking\":\"1\",\"label_type\":\"NEXT_DAY_DELIVERY\",\"activity_name\":\"34\",\"has_icon\":\"true\",\"promotion_id\":\"-999\",\"delivery_tag\":\"1_day_delivery\"}","rate":"5.0","recommend_type":"","right_cnt":"1","right_type":"66002","sales_price":"0.30","show_price":"RM0.30","show_uri":"tos-maliva-i-o3syd03w52-us/41e0c3a0ca0f4799978738d296d86023","skc_source":"graph","sku_image_source":"0","soldCount_burying_point":"918","source":"open_api","source_from":"0","strikethrough_price_value":"0.50","tag_before_title":"star_shop_tag","title_length":"91","title_text":"COD
                                  Mini Notebook for Student Office Cute Notebook
                                  Wholesale Ready Stock In School
                                  Supplies","token_type":"mt_goods","total_display_rows":"4","trust_label":"","volume":"918","volume_type":"sold"},"photoSearch":{"creative_id":"1863947076220961","symbol":"RM"}},"dynamicData":{"cover":"https://p16-oec-va.ibyteimg.com/tos-maliva-i-o3syd03w52-us/41e0c3a0ca0f4799978738d296d86023~tplv-o3syd03w52-crop-webp:400:400.webp?dr=15592&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=my2&from=1737278001"},"extraData":{"cardId":"202605182104464A365AF21D90564FDB9E-1735080995730523261-1","templateRegion":"sea"},"renderInfo":{"children":[{"name":"MainPic","props":{"absoluteItems":[null],"cardType":1,"cover":"@cover","disableRenderContentEle":1,"leftBottom":{"data":[{"height":24,"image":{"light":{"height":120,"minetype":"","thumb_uri":"","url_list":["https://p16-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/c735591a294d4c05a30bcb86ec183c29~tplv-aphluv4xwc-origin-png.png?dr=15574&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=678cc231&idc=my2&from=3454340299"],"width":351}},"left_retract":13,"sticker_type":2}],"key":"sticker"},"ratio":"1.00","rightBottom":{"data":{"commonLog":["baseLog","cardLog","photoSearch","btmLog"]},"key":"findSimilar"},"rightTop":{"data":{"discountLabelText":"-40%"},"key":"discount","style":{"backgroundColor":"UIShapePrimary","borderRadius":"0
                                  8","overflow":"hidden","padding":"2
                                  4","right":"0","top":"0"}},"style":{"borderRadius":"8","overflow":"hidden"},"trackParams":{"ec_biz_scene":"vertical_search_product_cover","order":2}}},{"children":[{"id":"lineTitle","name":"Title","props":{"logo":[{"src":"https://p16-oec-va.ibyteimg.com/tos-maliva-i-acgf4d7es9-us/top_choice_star_shop.png~tplv-o3syd03w52-resize-png:183:45.png?dr=15580&t=555f072d&ps=933b5bde&shp=905da467&shcp=d9d491bf&idc=my2&from=2422056039","src_dark":"https://p16-oec-va.ibyteimg.com/tos-maliva-i-acgf4d7es9-us/top_choice_star_shop.png~tplv-o3syd03w52-resize-png:183:45.png?dr=15580&t=555f072d&ps=933b5bde&shp=905da467&shcp=d9d491bf&idc=my2&from=2422056039","style":{"height":"14","margin":"0
                                  4 0 0","width":"56"}}],"maxLine":2,"text":"COD
                                  Mini Notebook for Student Office Cute Notebook
                                  Wholesale Ready Stock In School
                                  Supplies","textStyle":{"color":"UIText1","fontSize":"13"}}},{"children":[{"children":[{"children":[{"name":"text","props":{"content":"RM","flexShrink":0,"maxLine":"1","style":{"color":"UITextPrimary","font":"P3-SemiBold"}}},{"name":"text","props":{"content":"0","flexShrink":0,"maxLine":"1","style":{"color":"UITextPrimary","font":"H3-SemiBold","textOverflow":"ellipsis"}}},{"name":"text","props":{"content":".30","flexShrink":0,"maxLine":"1","style":{"color":"UITextPrimary","font":"SmallText1-SemiBold","textOverflow":"ellipsis"}}},{"id":"originPrice","name":"text","props":{"content":"RM0.50","maxLine":"1","style":{"color":"UIText3","font":"SmallText1-Regular","margin":"0
                                  0 0
                                  4","textDecoration":"line-through","textOverflow":"ellipsis"}}}],"id":"linePrice","name":"flex-layout","props":{"alignItems":"baseline","style":{"height":"22","overflow":"hidden","width":"fit-content"}}}],"name":"view","props":{"style":{"width":"100%"}}}],"name":"flex-layout","props":{"alignItems":"end","style":{"margin":"2
                                  0
                                  0"}}},{"children":[{"id":"rating","name":"image","props":{"src":"https://p16-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/cc65ec89a9874d9e9b48c47186bb3910~tplv-aphluv4xwc-origin-webp.webp?dr=15572&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=my2&from=1737278001","style":{"height":"12","width":"12"}}},{"name":"text","props":{"content":"5.0","style":{"color":"UIText1","font":"P3-Regular","margin":"0
                                  0 0
                                  2"}}},{"name":"view","props":{"style":{"backgroundColor":"UIShapeNeutral3","borderRadius":"0.5","height":"8","margin":"0
                                  3","width":"1"}}},{"id":"soldCount","name":"text","props":{"content":"Đã
                                  bán
                                  918","maxLine":"1","style":{"color":"UIText3","font":"P3-Regular","textOverflow":"ellipsis"}}}],"name":"linear-layout","props":{"crossGravity":"center","orientation":"horizontal","style":{"margin":"2
                                  0
                                  0"}}},{"children":[{"children":[{"name":"image","props":{"src":"https://p16-oec-va.ibyteimg.com/tos-maliva-i-acgf4d7es9-us/free_shipping_sea_consistent_icon_light.png~tplv-o3syd03w52-resize-png:800:800.png?dr=15580&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=my2&from=3454340299","srcDark":"https://p16-oec-va.ibyteimg.com/tos-maliva-i-acgf4d7es9-us/free_shipping_sea_consistent_icon_dark.png~tplv-o3syd03w52-resize-png:800:800.png?dr=15580&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=my2&from=3454340299","style":{"height":"12","width":"12"}}}],"name":"linear-layout","props":{"crossGravity":"center","orientation":"horizontal"}},{"name":"text","props":{"content":"Giao
                                  nhanh
                                  24h","maxLine":"1","style":{"color":"ECCyanText","font":"P3-Regular","margin":"0
                                  0 0
                                  3","textOverflow":"ellipsis"},"weight":1}}],"id":"ndd","name":"linear-layout","props":{"crossGravity":"center","orientation":"horizontal","style":{"margin":"4
                                  0
                                  0"}}},{"events":{"onexposure":{"actions":[{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"eventName":"ad_show_all","label":"ad_show_all"}}],"exposureId":"202605182104464A365AF21D90564FDB9E-1735080995730523261-1","exposureScene":"ad_show_all"}},"name":"view","props":{"style":{"height":"1","width":"1"}}}],"name":"linear-layout","props":{"style":{"backgroundColor":"UIPageGrouped2","borderRadius":"0
                                  0 8
                                  8","padding":"8"}}},{"name":"CardMask"}],"events":{"onclick":{"actions":[{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"tiktokec_product_click"}},{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"search_result_click"}},{"commonLog":["baseLog","cardLog","adAndPdpLog","btmLog"],"name":"onOpenProductDetail","params":{"color_property_value_id":"0","creative_id":"1863947076220961","is_intelligent_selection_main_image":"1","platform":"5","rec_main_cover_index":"0","schema":"aweme://ec/pdp?biz_type=0&fullScreen=false&orderRequestParams=%7B%7D&requestParams=%7B%22product_id%22%3A%5B%221735080995730523261%22%5D%7D&visitReportParams=%7B%22chain_key%22%3A%22%22%2C%22material_id%22%3A%221735080995730523261%22%2C%22material_type%22%3A1%2C%22seller_id%22%3A%227494298718519854205%22%7D","size_property_value_id":"0"}},{"commonLog":["baseLog","cardLog"],"name":"onClickProduct"},{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"duration":{"exposureId":"202605182104464A365AF21D90564FDB9E-1735080995730523261-1","exposureScene":"product_show"},"eventName":"realtime_click","label":"realtime_click"}}]},"ondisexposure":{"actions":[{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"duration":{"exposureId":"202605182104464A365AF21D90564FDB9E-1735080995730523261-1","exposureScene":"product_show"},"eventName":"show_over","label":"show_over"}}],"exposureId":"202605182104464A365AF21D90564FDB9E-1735080995730523261-1","exposureScene":"show_over"},"onexposure":{"actions":[{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"tiktokec_product_show"}},{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"search_result_show"}},{"commonLog":["baseLog"],"name":"onProductExposure"},{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"eventName":"show","label":"show"}}],"exposureDuration":1,"exposureId":"202605182104464A365AF21D90564FDB9E-1735080995730523261-1","exposureScene":"product_show"},"onlongpress":{"actions":[{"commonLog":["baseLog","cardLog","photoSearch","btmLog","adAndPdpLog"],"name":"onLongpress","params":{"feedbackText":"Chia
                                  sẻ phản hồi","findSimilarText":"Tìm sản phẩm
                                  tương
                                  tự","hideFindSimilar":false}}]}},"name":"linear-layout"}},"is_single_col":false}
                                width: 183
                            - style: {}
                              item_id: 1;1729425704051509331
                              tech_type: 2
                              biz_type: 1
                              data:
                                height: 340
                                lynx_card_key: search_product_card_v2
                                raw_data: >-
                                  {"type":1,"search_result_id":"1729425704051509331","item_key":"202605182104464A365AF21D90564FDB9E_1729425704051509331_1","view_object":{"commonLogParams":{"adAndPdpLog":{"log_extra":"{\"ad_price\":\"agsObwAKp-VqCw5vAAqn5aDvemGWh6gks0JUlA\",\"app_id\":1233,\"country_id\":\"NL\",\"cu_rank\":75,\"device_id\":7562705965742491157,\"ecom_card_type\":1,\"ecom_product_id_list\":[\"\"],\"gmv_max_bid_type\":1,\"gmv_max_session_id\":1848025693730289,\"ingestion_dc\":\"my2\",\"no_roi2_rank\":38,\"no_roi2_send\":3,\"offset\":0,\"priority_region\":\"MY\",\"query\":\"Notebook\",\"req_id\":\"202605182104464A365AF21D90564FDB9E\",\"rit\":11233532,\"roi2_ad_type\":2,\"roi2_alpha\":1,\"search_id\":\"202605182104464A365AF21D90564FDB9E\",\"send_dc\":\"sg\",\"send_likely_vregion\":\"Singapore-Central\",\"send_likely_vregion_type\":\"from_bytetim\",\"spu_id\":1729425704051509331,\"store_region\":\"VN\",\"uid\":7562022668603376658,\"unity_price\":\"agsObwAKqGdqCw5vAAqoZ2bO4W0KQ9w0BHkgiQ\",\"usd_exch_currency\":3,\"user_id\":7562022668603376658,\"ut\":12}"},"adLog":{"author_id":"7494083399031489619","creative_id":"1848025707662481","currency":"RM","entrance_form":"search_pure_goods_card","platform":"5","value":"1848025707662481"},"baseLog":{"bcm_multiverse_id":"20260518130448092704581004000000b7944629c3ee6769","impr_id":"202605182104464A365AF21D90564FDB9E","log_pb":"{\"impr_id\":\"202605182104464A365AF21D90564FDB9E\"}","product_card_type":"1","product_da_info":"{}","product_id":"1729425704051509331","search_id":"202605182104464A365AF21D90564FDB9E","search_result_id":"1729425704051509331","search_source":"mall","seller_name":"TSE
                                  Stationery The Super
                                  Easy","shop_id":"7494083399031489619"},"btmLog":{"chain_param":{"bcm_multiverse_id":"20260518130448092704581004000000b7944629c3ee6769"}},"cardLog":{"activity_name":"2,5,3","actual_image_height":"600","actual_image_width":"450","author_id":"7494083399031489619","biz_type":"0","currency":"RM","entrance_form":"search_pure_goods_card","follow_status":"0","image_feature":"null","image_size_type":"2","image_sku_id":"0","intelligent_selection_image_type":"8","is_ad":"0","is_attach_product_card":"0","is_intelligent_selection_main_image":"0","is_intelligent_sellingpoint":"1","is_intervene":"0","is_kg":"1","is_long_photo":"1","is_multi_intelligent_selling_point":"0","is_recom":"0","is_replace_smart_title":"false","is_show_recommend_type":"0","jump_status":"1","kg_image_types":"crop","main_image":"https://p16-oec-va.ibyteimg.com/tos-maliva-i-o3syd03w52-us/04e5225f42cea2324d1272ae00308343~tplv-o3syd03w52-crop-webp:450:600.webp?dr=15592&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=my2&from=1737278001","main_image_pdp_index":"1","main_image_type":"8","origin_format":"double","origin_image_height":"800","origin_image_width":"800","origin_uri":"tos-maliva-i-o3syd03w52-us/3e839c470a2d4c46bcfa9be38dd196af","platform":"5","product_intelligent_sellingpoint_text_num":"","product_label":"promotion_sticker_2,promotion_sticker_5,promotion_sticker_3","product_price":"0.40","product_price_discount":"","product_promotion_tag":"","product_sellingpoint_category":"empty","product_sellingpoint_id":"empty","product_sellingpoint_show_id":"","product_sellingpoint_text":"","product_sellingpoint_text_num":"","product_sellingpoint_type":"29","product_sellingpoint_type_name":"empty","rate":"4.9","recommend_type":"","right_cnt":"3","right_type":"66002,66005,66003","sales_price":"0.40","ship_from":"Pulau
                                  Pinang","show_price":"RM0.40","show_uri":"tos-maliva-i-o3syd03w52-us/04e5225f42cea2324d1272ae00308343","skc_source":"graph","sku_image_source":"0","soldCount_burying_point":"598789","source":"open_api","source_from":"0","title_length":"102","title_text":"F5
                                  Kraft Buku Tulis Latihan / Exercise Note Book
                                  Buku Latihan Sekolah Tadika Brown Koko
                                  Notebook
                                  Kecil","token_type":"mt_goods","total_display_rows":"4","trust_label":"","volume":"598789","volume_type":"sold_online"},"photoSearch":{"creative_id":"1848025707662481","symbol":"RM"}},"dynamicData":{"cover":"https://p16-oec-va.ibyteimg.com/tos-maliva-i-o3syd03w52-us/04e5225f42cea2324d1272ae00308343~tplv-o3syd03w52-crop-webp:450:600.webp?dr=15592&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=my2&from=1737278001"},"extraData":{"cardId":"202605182104464A365AF21D90564FDB9E-1729425704051509331-1","templateRegion":"sea"},"renderInfo":{"children":[{"name":"MainPic","props":{"absoluteItems":[null],"cardType":1,"cover":"@cover","disableRenderContentEle":1,"leftBottom":{"data":[{"height":24,"image":{"light":{"height":120,"minetype":"","thumb_uri":"","url_list":["https://p16-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/2938c6c662eb4d7e9ea200a5ab422b21~tplv-aphluv4xwc-origin-png.png?dr=15574&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=678cc231&idc=my2&from=3454340299"],"width":282}},"left_retract":13,"sticker_type":3},{"height":24,"image":{"light":{"height":120,"minetype":"","thumb_uri":"","url_list":["https://p16-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/2ebf6e305c564d3d9132c6fb2b3df06b~tplv-aphluv4xwc-origin-png.png?dr=15574&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=678cc231&idc=my2&from=3454340299"],"width":270}},"left_retract":13,"sticker_type":5},{"height":24,"image":{"light":{"height":120,"minetype":"","thumb_uri":"","url_list":["https://p16-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/c735591a294d4c05a30bcb86ec183c29~tplv-aphluv4xwc-origin-png.png?dr=15574&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=678cc231&idc=my2&from=3454340299"],"width":351}},"left_retract":13,"sticker_type":2}],"key":"sticker"},"ratio":"0.75","rightBottom":{"data":{"commonLog":["baseLog","cardLog","photoSearch","btmLog"]},"key":"findSimilar"},"style":{"borderRadius":"8","overflow":"hidden"},"trackParams":{"ec_biz_scene":"vertical_search_product_cover","order":1}}},{"children":[{"id":"lineTitle","name":"Title","props":{"maxLine":2,"text":"F5
                                  Kraft Buku Tulis Latihan / Exercise Note Book
                                  Buku Latihan Sekolah Tadika Brown Koko
                                  Notebook
                                  Kecil","textStyle":{"color":"UIText1","fontSize":"13"}}},{"children":[{"children":[{"children":[{"name":"text","props":{"content":"Từ","flexShrink":0,"maxLine":"1","style":{"color":"Primary","font":"P3-SemiBold","margin":"0
                                  2 0
                                  0","textOverflow":"ellipsis"}}},{"name":"text","props":{"content":"RM","flexShrink":0,"maxLine":"1","style":{"color":"UITextPrimary","font":"P3-SemiBold"}}},{"name":"text","props":{"content":"0","flexShrink":0,"maxLine":"1","style":{"color":"UITextPrimary","font":"H3-SemiBold","textOverflow":"ellipsis"}}},{"name":"text","props":{"content":".40","flexShrink":0,"maxLine":"1","style":{"color":"UITextPrimary","font":"SmallText1-SemiBold","textOverflow":"ellipsis"}}}],"id":"linePrice","name":"flex-layout","props":{"alignItems":"baseline","style":{"height":"22","overflow":"hidden","width":"fit-content"}}}],"name":"view","props":{"style":{"width":"100%"}}}],"name":"flex-layout","props":{"alignItems":"end","style":{"margin":"2
                                  0
                                  0"}}},{"children":[{"id":"rating","name":"image","props":{"src":"https://p16-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/cc65ec89a9874d9e9b48c47186bb3910~tplv-aphluv4xwc-origin-webp.webp?dr=15572&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=my2&from=1737278001","style":{"height":"12","width":"12"}}},{"name":"text","props":{"content":"4.9","style":{"color":"UIText1","font":"P3-Regular","margin":"0
                                  0 0
                                  2"}}},{"name":"view","props":{"style":{"backgroundColor":"UIShapeNeutral3","borderRadius":"0.5","height":"8","margin":"0
                                  3","width":"1"}}},{"id":"soldCount","name":"text","props":{"content":"Đã
                                  bán online
                                  598,8K","maxLine":"1","style":{"color":"UIText3","font":"P3-Regular","textOverflow":"ellipsis"}}}],"name":"linear-layout","props":{"crossGravity":"center","orientation":"horizontal","style":{"margin":"2
                                  0
                                  0"}}},{"id":"wareHouse","name":"rich-text","props":{"maxLine":"1","spanList":[{"iconStyle":{"height":"12","margin":"0
                                  3 0
                                  0","width":"12"},"src":"https://p19-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/77d6c01d91db93d45d7d94e597bd1e94.png~tplv-aphluv4xwc-resize-webp:0:0.webp","srcDark":"https://p19-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/2fb30d2388c54e3847ba249ac438d38c.png~tplv-aphluv4xwc-resize-webp:0:0.webp","type":"icon"},{"content":"Pulau
                                  Pinang","textStyle":{"color":"UIText3","font":"P3-Regular"},"type":"text"}],"style":{"margin":"2
                                  0
                                  0","textOverflow":"ellipsis"}}},{"events":{"onexposure":{"actions":[{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"eventName":"ad_show_all","label":"ad_show_all"}}],"exposureId":"202605182104464A365AF21D90564FDB9E-1729425704051509331-1","exposureScene":"ad_show_all"}},"name":"view","props":{"style":{"height":"1","width":"1"}}}],"name":"linear-layout","props":{"style":{"backgroundColor":"UIPageGrouped2","borderRadius":"0
                                  0 8
                                  8","padding":"8"}}},{"name":"CardMask"}],"events":{"onclick":{"actions":[{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"tiktokec_product_click"}},{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"search_result_click"}},{"commonLog":["baseLog","cardLog","adAndPdpLog","btmLog"],"name":"onOpenProductDetail","params":{"color_property_value_id":"0","creative_id":"1848025707662481","is_intelligent_selection_main_image":"1","platform":"5","rec_main_cover_index":"0","schema":"aweme://ec/pdp?biz_type=0&fullScreen=false&orderRequestParams=%7B%7D&requestParams=%7B%22product_id%22%3A%5B%221729425704051509331%22%5D%7D&visitReportParams=%7B%22chain_key%22%3A%22%22%2C%22material_id%22%3A%221729425704051509331%22%2C%22material_type%22%3A1%2C%22seller_id%22%3A%227494083399031489619%22%7D","size_property_value_id":"0"}},{"commonLog":["baseLog","cardLog"],"name":"onClickProduct"},{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"duration":{"exposureId":"202605182104464A365AF21D90564FDB9E-1729425704051509331-1","exposureScene":"product_show"},"eventName":"realtime_click","label":"realtime_click"}}]},"ondisexposure":{"actions":[{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"duration":{"exposureId":"202605182104464A365AF21D90564FDB9E-1729425704051509331-1","exposureScene":"product_show"},"eventName":"show_over","label":"show_over"}}],"exposureId":"202605182104464A365AF21D90564FDB9E-1729425704051509331-1","exposureScene":"show_over"},"onexposure":{"actions":[{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"tiktokec_product_show"}},{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"search_result_show"}},{"commonLog":["baseLog"],"name":"onProductExposure"},{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"eventName":"show","label":"show"}}],"exposureDuration":1,"exposureId":"202605182104464A365AF21D90564FDB9E-1729425704051509331-1","exposureScene":"product_show"},"onlongpress":{"actions":[{"commonLog":["baseLog","cardLog","photoSearch","btmLog","adAndPdpLog"],"name":"onLongpress","params":{"feedbackText":"Chia
                                  sẻ phản hồi","findSimilarText":"Tìm sản phẩm
                                  tương
                                  tự","hideFindSimilar":false}}]}},"name":"linear-layout"}},"is_single_col":false}
                                width: 183
                            - style: {}
                              item_id: 2;1729824615743391411
                              tech_type: 2
                              biz_type: 1
                              data:
                                height: 340
                                lynx_card_key: search_product_card_v2
                                raw_data: >-
                                  {"type":1,"search_result_id":"1729824615743391411","item_key":"202605182104464A365AF21D90564FDB9E_1729824615743391411_1","view_object":{"commonLogParams":{"adAndPdpLog":{"log_extra":"{\"ad_price\":\"agsObwAKonlqCw5vAAqieV1RQFwl34AFSFsKwg\",\"app_id\":1233,\"country_id\":\"NL\",\"cu_rank\":210,\"device_id\":7562705965742491157,\"ecom_card_type\":1,\"ecom_product_id_list\":[\"\"],\"gmv_max_bid_type\":1,\"gmv_max_session_id\":1865264076924097,\"ingestion_dc\":\"my2\",\"no_roi2_rank\":244,\"no_roi2_send\":3,\"offset\":0,\"priority_region\":\"MY\",\"query\":\"Notebook\",\"req_id\":\"202605182104464A365AF21D90564FDB9E\",\"rit\":11233532,\"roi2_ad_type\":2,\"roi2_alpha\":1,\"search_id\":\"202605182104464A365AF21D90564FDB9E\",\"send_dc\":\"sg\",\"send_likely_vregion\":\"Singapore-Central\",\"send_likely_vregion_type\":\"from_bytetim\",\"spu_id\":1729824615743391411,\"store_region\":\"VN\",\"uid\":7562022668603376658,\"unity_price\":\"agsObwAKoyhqCw5vAAqjKGTNtS5MCyGQMc8u1g\",\"usd_exch_currency\":3,\"user_id\":7562022668603376658,\"ut\":12}"},"adLog":{"author_id":"7495777881643649715","creative_id":"1865264726035458","currency":"RM","entrance_form":"search_pure_goods_card","platform":"5","value":"1865264726035458"},"baseLog":{"bcm_multiverse_id":"202605181304480927045810040000005b6b090f693a776c","impr_id":"202605182104464A365AF21D90564FDB9E","log_pb":"{\"impr_id\":\"202605182104464A365AF21D90564FDB9E\"}","product_card_type":"1","product_da_info":"{}","product_id":"1729824615743391411","search_id":"202605182104464A365AF21D90564FDB9E","search_result_id":"1729824615743391411","search_source":"mall","seller_name":"The
                                  Naughty
                                  Panda","shop_id":"7495777881643649715"},"btmLog":{"chain_param":{"bcm_multiverse_id":"202605181304480927045810040000005b6b090f693a776c"}},"cardLog":{"activity_name":"2,5,3","actual_image_height":"400","actual_image_width":"400","author_id":"7495777881643649715","biz_type":"0","currency":"RM","entrance_form":"search_pure_goods_card","follow_status":"0","image_feature":"null","image_size_type":"1","image_sku_id":"0","intelligent_selection_image_type":"8","is_ad":"0","is_attach_product_card":"0","is_intelligent_selection_main_image":"0","is_intervene":"0","is_kg":"0","is_long_photo":"0","is_multi_intelligent_selling_point":"0","is_recom":"0","is_replace_smart_title":"false","is_show_recommend_type":"0","jump_status":"1","kg_image_types":"","main_image":"https://p16-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/d97c1034af074b41ba3f0f32bc54572d~tplv-aphluv4xwc-crop-webp:400:400.webp?dr=15592&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=my2&from=1737278001","main_image_pdp_index":"1","main_image_type":"8","origin_format":"double","origin_image_height":"1024","origin_image_width":"1024","origin_uri":"tos-alisg-i-aphluv4xwc-sg/d97c1034af074b41ba3f0f32bc54572d","platform":"5","product_label":"promotion_sticker_2,promotion_sticker_5,promotion_sticker_3,warehouse_label_34-34","product_label_info":"[{\"label_type\":34,\"text\":\"Giao
                                  nhanh
                                  24h\"}]","product_price":"9.99","product_price_discount":"","product_promotion_tag":"{\"delivery_tag\":\"1_day_delivery\",\"placement\":\"FREE_SHIPPING\",\"ranking\":\"1\",\"label_type\":\"NEXT_DAY_DELIVERY\",\"activity_name\":\"34\",\"has_icon\":\"true\",\"promotion_id\":\"-999\"}","rate":"4.6","recommend_type":"","right_cnt":"3","right_type":"66002,66005,66003","sales_price":"9.99","show_price":"RM9.99","show_uri":"tos-alisg-i-aphluv4xwc-sg/d97c1034af074b41ba3f0f32bc54572d","skc_source":"graph","sku_image_source":"0","soldCount_burying_point":"448","source":"desktop","source_from":"0","title_length":"128","title_text":"2026
                                  notebook Planner Kawaii A5 Notebook PU Leather
                                  Paper Hard Cover Weekly & Monthly 2026 for
                                  Office School Supplies
                                  Stationery","token_type":"mt_goods","total_display_rows":"4","trust_label":"","volume":"448","volume_type":"sold"},"photoSearch":{"creative_id":"1865264726035458","symbol":"RM"}},"dynamicData":{"cover":"https://p16-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/d97c1034af074b41ba3f0f32bc54572d~tplv-aphluv4xwc-crop-webp:400:400.webp?dr=15592&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=my2&from=1737278001"},"extraData":{"cardId":"202605182104464A365AF21D90564FDB9E-1729824615743391411-1","templateRegion":"sea"},"renderInfo":{"children":[{"name":"MainPic","props":{"absoluteItems":[null],"cardType":1,"cover":"@cover","disableRenderContentEle":1,"leftBottom":{"data":[{"height":24,"image":{"light":{"height":120,"minetype":"","thumb_uri":"","url_list":["https://p16-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/2938c6c662eb4d7e9ea200a5ab422b21~tplv-aphluv4xwc-origin-png.png?dr=15574&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=678cc231&idc=my2&from=3454340299"],"width":282}},"left_retract":13,"sticker_type":3},{"height":24,"image":{"light":{"height":120,"minetype":"","thumb_uri":"","url_list":["https://p16-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/2ebf6e305c564d3d9132c6fb2b3df06b~tplv-aphluv4xwc-origin-png.png?dr=15574&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=678cc231&idc=my2&from=3454340299"],"width":270}},"left_retract":13,"sticker_type":5},{"height":24,"image":{"light":{"height":120,"minetype":"","thumb_uri":"","url_list":["https://p19-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/c735591a294d4c05a30bcb86ec183c29~tplv-aphluv4xwc-origin-png.png?dr=15574&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=678cc231&idc=my2&from=3454340299"],"width":351}},"left_retract":13,"sticker_type":2}],"key":"sticker"},"ratio":"1.00","rightBottom":{"data":{"commonLog":["baseLog","cardLog","photoSearch","btmLog"]},"key":"findSimilar"},"style":{"borderRadius":"8","overflow":"hidden"},"trackParams":{"ec_biz_scene":"vertical_search_product_cover","order":0}}},{"children":[{"id":"lineTitle","name":"Title","props":{"maxLine":2,"text":"2026
                                  notebook Planner Kawaii A5 Notebook PU Leather
                                  Paper Hard Cover Weekly & Monthly 2026 for
                                  Office School Supplies
                                  Stationery","textStyle":{"color":"UIText1","fontSize":"13"}}},{"children":[{"children":[{"children":[{"name":"text","props":{"content":"Từ","flexShrink":0,"maxLine":"1","style":{"color":"Primary","font":"P3-SemiBold","margin":"0
                                  2 0
                                  0","textOverflow":"ellipsis"}}},{"name":"text","props":{"content":"RM","flexShrink":0,"maxLine":"1","style":{"color":"UITextPrimary","font":"P3-SemiBold"}}},{"name":"text","props":{"content":"9","flexShrink":0,"maxLine":"1","style":{"color":"UITextPrimary","font":"H3-SemiBold","textOverflow":"ellipsis"}}},{"name":"text","props":{"content":".99","flexShrink":0,"maxLine":"1","style":{"color":"UITextPrimary","font":"SmallText1-SemiBold","textOverflow":"ellipsis"}}}],"id":"linePrice","name":"flex-layout","props":{"alignItems":"baseline","style":{"height":"22","overflow":"hidden","width":"fit-content"}}}],"name":"view","props":{"style":{"width":"100%"}}}],"name":"flex-layout","props":{"alignItems":"end","style":{"margin":"2
                                  0
                                  0"}}},{"children":[{"id":"rating","name":"image","props":{"src":"https://p16-oec-sg.ibyteimg.com/tos-alisg-i-aphluv4xwc-sg/cc65ec89a9874d9e9b48c47186bb3910~tplv-aphluv4xwc-origin-webp.webp?dr=15572&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=my2&from=1737278001","style":{"height":"12","width":"12"}}},{"name":"text","props":{"content":"4.6","style":{"color":"UIText1","font":"P3-Regular","margin":"0
                                  0 0
                                  2"}}},{"name":"view","props":{"style":{"backgroundColor":"UIShapeNeutral3","borderRadius":"0.5","height":"8","margin":"0
                                  3","width":"1"}}},{"id":"soldCount","name":"text","props":{"content":"Đã
                                  bán
                                  448","maxLine":"1","style":{"color":"UIText3","font":"P3-Regular","textOverflow":"ellipsis"}}}],"name":"linear-layout","props":{"crossGravity":"center","orientation":"horizontal","style":{"margin":"2
                                  0
                                  0"}}},{"children":[{"children":[{"name":"image","props":{"src":"https://p16-oec-va.ibyteimg.com/tos-maliva-i-acgf4d7es9-us/free_shipping_sea_consistent_icon_light.png~tplv-o3syd03w52-resize-png:800:800.png?dr=15580&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=my2&from=3454340299","srcDark":"https://p16-oec-va.ibyteimg.com/tos-maliva-i-acgf4d7es9-us/free_shipping_sea_consistent_icon_dark.png~tplv-o3syd03w52-resize-png:800:800.png?dr=15580&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=my2&from=3454340299","style":{"height":"12","width":"12"}}}],"name":"linear-layout","props":{"crossGravity":"center","orientation":"horizontal"}},{"name":"text","props":{"content":"Giao
                                  nhanh
                                  24h","maxLine":"1","style":{"color":"ECCyanText","font":"P3-Regular","margin":"0
                                  0 0
                                  3","textOverflow":"ellipsis"},"weight":1}}],"id":"ndd","name":"linear-layout","props":{"crossGravity":"center","orientation":"horizontal","style":{"margin":"4
                                  0
                                  0"}}},{"events":{"onexposure":{"actions":[{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"eventName":"ad_show_all","label":"ad_show_all"}}],"exposureId":"202605182104464A365AF21D90564FDB9E-1729824615743391411-1","exposureScene":"ad_show_all"}},"name":"view","props":{"style":{"height":"1","width":"1"}}}],"name":"linear-layout","props":{"style":{"backgroundColor":"UIPageGrouped2","borderRadius":"0
                                  0 8
                                  8","padding":"8"}}},{"name":"CardMask"}],"events":{"onclick":{"actions":[{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"tiktokec_product_click"}},{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"search_result_click"}},{"commonLog":["baseLog","cardLog","adAndPdpLog","btmLog"],"name":"onOpenProductDetail","params":{"color_property_value_id":"0","creative_id":"1865264726035458","is_intelligent_selection_main_image":"1","platform":"5","rec_main_cover_index":"0","schema":"aweme://ec/pdp?biz_type=0&fullScreen=false&orderRequestParams=%7B%7D&requestParams=%7B%22product_id%22%3A%5B%221729824615743391411%22%5D%7D&visitReportParams=%7B%22chain_key%22%3A%22%22%2C%22material_id%22%3A%221729824615743391411%22%2C%22material_type%22%3A1%2C%22seller_id%22%3A%227495777881643649715%22%7D","size_property_value_id":"0"}},{"commonLog":["baseLog","cardLog"],"name":"onClickProduct"},{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"duration":{"exposureId":"202605182104464A365AF21D90564FDB9E-1729824615743391411-1","exposureScene":"product_show"},"eventName":"realtime_click","label":"realtime_click"}}]},"ondisexposure":{"actions":[{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"duration":{"exposureId":"202605182104464A365AF21D90564FDB9E-1729824615743391411-1","exposureScene":"product_show"},"eventName":"show_over","label":"show_over"}}],"exposureId":"202605182104464A365AF21D90564FDB9E-1729824615743391411-1","exposureScene":"show_over"},"onexposure":{"actions":[{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"tiktokec_product_show"}},{"commonLog":["baseLog","cardLog"],"name":"reportTrack","params":{"eventName":"search_result_show"}},{"commonLog":["baseLog"],"name":"onProductExposure"},{"commonLog":["baseLog","adLog","adAndPdpLog"],"name":"reportTrack","params":{"eventName":"show","label":"show"}}],"exposureDuration":1,"exposureId":"202605182104464A365AF21D90564FDB9E-1729824615743391411-1","exposureScene":"product_show"},"onlongpress":{"actions":[{"commonLog":["baseLog","cardLog","photoSearch","btmLog","adAndPdpLog"],"name":"onLongpress","params":{"feedbackText":"Chia
                                  sẻ phản hồi","findSimilarText":"Tìm sản phẩm
                                  tương
                                  tự","hideFindSimilar":false}}]}},"name":"linear-layout"}},"is_single_col":false}
                                width: 183
                    style: {}
                    pendent_layer: {}
                  requestId: e621f2c1-be85-425b-8e03-d1b9d3ae6675
          headers: {}
        '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/realtime/product/search?sk=Notebook&region=MY&sort_type=1&price_range=0%2C100&live=0&cod=0&count=10&offset=0' \
              --header 'Authorization: Bearer <YOUR_API_KEY>'
        - lang: python
          label: Python
          source: |-
            import requests

            response = requests.get(
                'https://api.keyapi.ai/v1/tiktok/realtime/product/search',
                params={"sk": "Notebook","region": "MY","sort_type": "1","price_range": "0,100","live": "0","cod": "0","count": "10","offset": "0"},
                headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
            )
            print(response.json())
        - lang: javascript
          label: JavaScript
          source: >-
            const params = new URLSearchParams({"sk": "Notebook","region":
            "MY","sort_type": "1","price_range": "0,100","live": "0","cod":
            "0","count": "10","offset": "0"});


            const response = await
            fetch(`https://api.keyapi.ai/v1/tiktok/realtime/product/search?${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).

````