Unofficial TikTok URL Resolver API

GET/api/v1/resolve_url

Expand a TikTok share/short link and extract the user, video, and share info.

ParameterDescription
urlrequiredA TikTok share/short link (vt.tiktok.com, vm.tiktok.com, or /t/…).

Returns

user_id, video_id, timestamp, device_type, sharer_language, sharer_region, and the resolved landing_url.

Example Request

https://dev.omar-thing.site/api/v1/resolve_url?url=https://vt.tiktok.com/ZSxxxxxxx/&key=YOUR_API_KEY

Example Response

{
  "data": {
    "device_type": "iOS",
    "landing_url": "https://www.tiktok.com/@user/video/7460000000000000000?...",
    "sharer_language": "en",
    "sharer_region": "US",
    "timestamp": "2026-01-15T12:34:56+00:00",
    "user_id": "6700000000000000000",
    "video_id": "7460000000000000000"
  },
  "status": "success"
}
Sends a live request using your API key above.