API Access

TikDash Public API

Integrate TikTok content fetching directly into your application using our simple REST API.

Base URL

https://tikdash.my.id
REST
GET/api?url=<tiktok_url>Recommended

Simplest public endpoint. Just add the TikTok URL as a query param — no POST or JSON body needed. Try it directly in your browser.

ParamTypeDescription
urlstringTikTok link (tiktok.com / vt.tiktok.com / vm.tiktok.com)

Request

GET /api?url=...

Response — Video

200 OK · application/json

Response — Slideshow / Photos

200 OK · application/json
POST/api/tiktok

Fetch TikTok video or slideshow metadata and download URLs.

Request

POST /api/tiktok

Response — Video

200 OK · application/json

Response — Slideshow / Photos

200 OK · application/json
GET/api/download

Proxy endpoint to download video, image, or audio files through the server.

ParamTypeDescription
urlstringURL-encoded CDN URL of the content
filenamestringOutput filename (without extension)
type"video" | "image" | "audio"Content type

Example

GET /api/download

Code Examples

Ready-to-use snippets for popular languages and frameworks.

JavaScript

Usage Notice

This API is provided for personal and educational use. Do not use it to scrape or redistribute TikTok content at scale. Content is sourced from TikTok's public endpoints and subject to their terms of service.