🇺🇸 English
  • 🇨🇳简体中文
  • 🇺🇸 English
  1. Key
🇺🇸 English
  • 🇨🇳简体中文
  • 🇺🇸 English
  • Introduction
  • Authentication
  • User
    • Get user information by ID
      GET
    • Extract user user_id
      GET
    • Extract user sec_uid
      GET
    • Get user video feed
      GET
    • Get user liked video feed
      GET
    • Get user playlists
      GET
    • Get playlist information by ID
      GET
    • Get user follower list
      GET
    • Get user following list
      GET
    • Get user region
      GET
    • Get user stories
      GET
    • Check ttseller identity
      GET
    • Check showcase activated
      GET
  • Video
    • Get video information by ID
      GET
    • Comments by video ID
      GET
    • Get comment replies
      GET
    • Comment information by ID
      GET
    • Trending categories feed list
      GET
    • Trending feed
      GET
    • Get video feed by play ID
      GET
    • Get video feed by hashtag ID
      GET
    • Get video feed by music ID
      GET
    • Get hashtag information by ID
      GET
    • Get music information by ID
      GET
    • Get user music list by user ID
      GET
    • Get product related videos
      GET
    • Get seller related videos
      GET
  • Live
    • Get live information by ID
    • Get live ranking list
    • Get live ranking information by ID
    • Check live stream on
  • Shop
    • Get product information by ID
    • Get seller categories
    • Get product level1 category metadata
    • Get product level2 category metadata
    • Get product level3 category metadata
    • Get seller information by ID
    • Get list of seller products
    • Get seller ID by Share Link
    • Get product ID by Share Link
    • Get web home products by category ID
    • Get video associated product list
    • Get user Related products
  • Search
    • Search user
    • Search video
    • Search hashtag
    • Search music
    • Search live
    • Search product
  • Errors
    • Bad Request (400)
    • Unauthorized (401)
    • Account Key Session Expiry (428)
    • Rate-Limit (429)
    • Server error (500)
  • Key
    • Get information about your API Key
      GET
  • Schemas
    • 示例数据模型
      • UserInfo
      • UserFollowers
      • UserFollowing
      • UserRegion
      • UserVideoList
      • VideoInfo
      • VideoComments
      • VideoCommentsReplies
      • CommentInfo
      • ProductInfo
      • SellerCategories
      • TrendingVideoList
      • TrendingFeed
      • UserStories
      • UserLikedFeed
      • SearchUser
      • SearchVideo
      • SearchHashTag
      • SearchMusic
      • SearchLive
      • SearchProduct
      • UserPlayList
      • PlayListInfo
      • VideoListByPlayId
      • HashtagInfo
      • VideoListByHashtagId
      • VideoListByMusicId
      • MusicInfo
      • UserMusicList
      • LiveInfo
      • LiveRankingList
      • LiveRankingInfo
      • CheckLiveOn
      • ExtractId
      • CategoryMetaData
      • SellerInfo
      • SellerProductList
      • ShareLink
      • HomeCategoryProductList
      • ProductIds
      • VideoIds
  1. Key

Get information about your API Key

GET
https://api.tikhubapi.com/api/v1//key/info
Key
Return the basic information of the current API Key, remaining usage limit, current package level, next renewal information, etc.

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************

Responses

🟢200成功
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.tikhubapi.com/api/v1//key/info' \
--header 'Authorization: Basic <encoded-value>'
Response Response Example
{
    "code": 0,
    "msg": "success",
    "data": {
        "subscriptionList": [
            {
                "product": "BASIC",
                "quota": 60000,
                "left": 59997,
                "status": 0,
                "startTime": "2025-08-25 15:36:12",
                "endTime": "2025-09-25 15:36:12"
            }
        ],
        "recentTime": "2025-08-25 16:57:37",
        "recentDaysStat": [
            {
                "date": "2025-08-25",
                "count": 3
            },
            {
                "date": "2025-08-24",
                "count": 0
            },
            {
                "date": "2025-08-23",
                "count": 0
            },
            {
                "date": "2025-08-22",
                "count": 0
            },
            {
                "date": "2025-08-21",
                "count": 0
            }
        ]
    }
}
Previous
Server error (500)
Next
UserInfo
Built with