Unofficial TikTok Video Status API

GET/api/v1/video_status

Check up to 40 videos in one call — is each still available (not deleted/removed)?

ParameterDescription
videosrequiredComma-separated video ids or TikTok video URLs (max 40).

Returns

count, available_count, and a results array of {input, video_id, available}. available is false for deleted/removed/non-existent videos and null when no video id could be read from the input.

Example Request

https://dev.omar-thing.site/api/v1/video_status?videos=7683514789003300110%2C7684963976316259602&key=YOUR_API_KEY

Example Response

{
  "data": {
    "available_count": 1,
    "count": 2,
    "results": [
      {
        "available": true,
        "input": "7683514789003300110",
        "video_id": "7683514789003300110"
      },
      {
        "available": false,
        "input": "7000000000000000001",
        "video_id": "7000000000000000001"
      }
    ]
  },
  "status": "success"
}
Sends a live request using your API key above.

More Content endpoints