Tabcut Open API
    Tabcut Open API
    • 【Must-Read】About Signature
    • Data APIs
      • Item
        • Item Ranking
        • Item Search
        • Item Basic
        • Item Video List
        • Item Creator List
        • Item Trend
        • Item Sales Mode Distribution
        • Item Sales Channels Distribution
      • Item Creator
        • Item Creator Statistic
        • Item Creator Basic
        • Item Creator Items
        • Item Creator Item Category
        • Item Creator Video Trend
        • Item Creator Video Category
        • Item Creator Video List
        • Item Creator Video Detail
        • Item Creator Search
        • Item Creator Trend
      • Seller
        • Seller Ranking
        • Seller Search
      • Item Video
        • Item Video Item List
        • Item Video Trend
        • Item Video Basic
        • Item Video Play Url
    • Meta APIs
      • Translation of Item category names
      • Region List
        GET
      • Item Category List
        GET
      • Tiktok Category List
        GET

    【Must-Read】About Signature

    0. Please contact Tabcut customer service to obtain the appKey and appSecret, and do not disclose them.#

    1. When calling all interfaces, please add the following three headers to the request header.#

    x-appKey: Please contact Tabcut customer service to obtain.
    x-timestamp: The timestamp when adding the signature, up to milliseconds.
    x-sign: The signature value, refer to Point 2 for details.

    2. x-sign Generate#

    2.1 Processing of Input Parameters#

    The processed input parameters = after sorting all input parameter fields in ascending order of key names, concatenate the key names and values in the format of key=value&.

    2.2 Original String Before Signature Addition#

    The original string before signature addition = processed input parameters + "&timestamp=${timestamp}" + "&appSecret=${appSecret}".
    Note: If the parameters before concatenating the timestamp end with an ampersand (&), do not add another &; otherwise, add one.
    Example:
    pageNo=2&rankDay=1&region=US&sort=1&timestamp=1702974058698&appSecret=66cef285952841e39b1ce7c2749f0c1b

    2.3 Signature Methods#

    x-sign: The original string before signature addition is subjected to MD5 calculation.
    Private key: namely appSecret.

    2.4 The Java code is as follows.#

    MD5Utils Attached.
    TIP
    Spaces are encoded as %20 in JavaScript and as the + sign in Java, so a regular expression replacement is needed.

    2.5 apifox Public script#

    Pre-Script#

    Post-Script#

    Modified at 2025-06-23 12:48:16
    Next
    Item Ranking
    Built with