Mode
Color theme

API Documentation

Pull TikTrack's data straight into your own app, bot, or script.
Getting your API key
Free vs. Paid
Free
100 requests / day
Paid
500 requests / day
Examples
User Info
Example Code:
import requests

BASE = "https://einzzcookie.org"
API_KEY = "tt_####_#############################"
HEADERS = {"X-API-Key": API_KEY}

def user_info(username):
    r = requests.get(f"{BASE}/api/user/userInfo", headers=HEADERS, params={"username": username})
    return r.status_code, r.json()

print(user_info("einzzcookie"))
Example Output:
{
  "success": true,
  "data": {
    "secUid": "MS4wLjABAAAAsNmlHZAoKMe9uZ__0Ce4G3eEo70dr-ceUeiIsSl8Svb1fGsx2k-DP_dRRp042gW-",
    "username": "einzzcookie",
    "nickname": "EinzzCookie",
    "userId": "7276962527903777824",
    "signature": "A pawn can be everything if he pushed forward far enough",
    "createTime": "2024-11-30T11:11:32.000Z",
    "avatarLarger": "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/42fc6dddf8d836da5f86bcf0ea363ba2~tplv-tiktokx-cropcenter:1080:1080.jpeg?...",
    "region": null,
    "regionName": "N/A",
    "language": "de",
    "isVerified": false,
    "isPrivate": false,
    "isBusiness": false,
    "isMuted": false,
    "followerCount": 61,
    "followingCount": 13,
    "heart": 0,
    "videoCount": 0,
    "friendCount": 9
  }
}
User Shared
Example Code:
import requests

BASE = "https://einzzcookie.org"
API_KEY = "tt_####_#############################"
HEADERS = {"X-API-Key": API_KEY}

def user_shared(share_url):
    r = requests.get(f"{BASE}/api/user/userShared", headers=HEADERS, params={"url": share_url})
    return r.status_code, r.json()

print(user_shared("https://www.tiktok.com/@tikt0kstalker?_r=1&_t=ZG-9896CAogDcf"))
Example Output:
{
  "success": true,
  "data": {
    "sharedUserSecUid": "MS4wLjABAAAAsNmlHZAoKMe9uZ__0Ce4G3eEo70dr-ceUeiIsSl8Svb1fGsx2k-DP_dRRp042gW-",
    "sharerUserSecUid": "MS4wLjABAAAALukAIEi-J7_WP9ZPZ7BQkNobobVbw3dJFJsg-2GJLKYsHE7L95lLxmbFhNfstLoy",
    "utmMedium": "android",
    "utmSource": "copy",
    "timestamp": "2026-07-18T21:08:32.000Z",
    "sharedUsername": "einzzcookie",
    "sharerUsername": "tikt0kstalker"
  }
}
Video Info
Example Code:
import requests

BASE = "https://einzzcookie.org"
API_KEY = "tt_####_#############################"
HEADERS = {"X-API-Key": API_KEY}

def video_info(video_url):
    r = requests.get(f"{BASE}/api/video/info", headers=HEADERS, params={"url": video_url})
    return r.status_code, r.json()

print(video_info("https://www.tiktok.com/@tikt0kstalker/video/7643799305836334368"))
Example Output:
{
  "success": true,
  "data": {
    "id": "7643799305836334368",
    "desc": "Tiktok Stalker 💅",
    "tags": "#joegoldberg, #stalker, #controlfreak, #relationshipgoals, #obsessed",
    "createTime": "2026-05-25T12:05:17.000Z",
    "location": "DE",
    "video": {
      "width": 576,
      "height": 1024,
      "duration": 15,
      "playUrl": "https://v16-webapp-prime.tiktok.com/video/tos/useast2a/tos-useast2a-ve...",
      "downloadUrl": "https://webapp-no1a.tiktok.com/ddfdfea2e5aaad5b282eba4acfebeeb1/6a5e8e..."
    },
    "music": {
      "id": "7642765501039527953",
      "title": "stalk ur socials",
      "author": "s0rrow",
      "duration": 60
    },
    "stats": { "plays": 1182, "likes": 41, "comments": 1, "shares": 8, "saves": 6 },
    "author": {
      "id": "7524464901264360470",
      "username": "tikt0kstalker",
      "nickname": "TTStalker",
      "followerCount": 39,
      "followingCount": 1,
      "heartCount": 819,
      "videoCount": 7
    }
  }
}
Video Shared
Example Code:
import requests

BASE = "https://einzzcookie.org"
API_KEY = "tt_####_#############################"
HEADERS = {"X-API-Key": API_KEY}

def video_shared(video_url):
    r = requests.get(f"{BASE}/api/video/videoShared", headers=HEADERS, params={"url": video_url})
    return r.status_code, r.json()

print(video_shared("https://vm.tiktok.com/ZGd9AfXpa/"))
Example Output:
{
  "success": true,
  "data": {
    "videoId": "132",
    "username": "admin",
    "sharerId": "7276962527903776824",
    "sharerUsername": "einzzcookie",
    "device": "android",
    "sharedAt": "2026-06-23T17:52:45.000Z",
    "landingUrl": "https://www.tiktok.com/@admin/video/123?_d=ex...",
    "shareRegion": "DE",
    "originalUrl": "https://vm.tiktok.com/ZGd9BfXps/"
  }
}
Need help? Join our Telegram for support.