TikTok Downloader API


Endpoints:

The only current endpoint supported is /api
All requests API requests should be made there.

Sending Requests:

Requests should be made with the POST method to the /api endpoint.
All requests should include a JSON body with the following data:

{
    "url" : TikTokUrlHere
}

Server Response:

The server response will be formatted as such:

{
    "code" : ResponseCode
    "url" : DownloadUrl*
    "error" : SourceOfError
    "message" : ServerMessage

}

Fields in purple are returned upon response with code which is not equal to 200 (OK).

Fields marked by an asterisk are only returned upon response with code of 200 (OK).

Code is always returned (unless server is down)