Free TikTok API: Get TikTok Data Free — No Credit Card Required

TikTokAPI.store Team · · 2 min read

Looking for a free TikTok API? TikTokAPI.store gives you 100 requests per day at no cost — no credit card, no trial period, no expiry. Sign up and get an API key in under a minute.

What's included in the free TikTok API plan

  • 100 requests/day across all 20+ endpoints
  • TikTok video metadata and watermark-free download URLs
  • User profiles, follower counts, and post lists
  • Trending feeds by country
  • Hashtag search and keyword search results
  • Comment threads and replies
  • Sound and music metadata

Every endpoint available on paid plans is also available on the free plan. The only limit is volume — 100 req/day.

How to get a free TikTok API key

  1. Sign up at tiktokapi.store — email only, no card.
  2. Open the dashboard and copy your API key.
  3. Make your first call:
curl "https://api.tiktokapi.store/api/v1/user/info?unique_id=charlidamelio"   -H "Authorization: Bearer YOUR_API_KEY"

You'll get back a full JSON profile in under 200ms.

Free TikTok API vs paid plans

The free plan is enough for prototyping, personal projects, and small research tasks. When you need more volume, paid plans start at $29/mo for unlimited monthly requests — still far cheaper than any per-request alternative.

PlanPriceRequestsRate limit
Free$0/mo100 req/dayNo cap
Starter$29/moUnlimited/mo60 req/min
Pro$99/moUnlimited/mo200 req/min
Business$299/moUnlimited/mo600 req/min

Free TikTok API in Python

import requests

API_KEY = "your_free_api_key"
BASE    = "https://api.tiktokapi.store/api/v1"
headers = {"Authorization": f"Bearer {API_KEY}"}

# Fetch a video
resp = requests.get(f"{BASE}/video/info", headers=headers,
                    params={"url": "https://www.tiktok.com/@user/video/123"})
print(resp.json()["data"]["desc"])

Free TikTok API in Node.js

const res = await fetch(
  "https://api.tiktokapi.store/api/v1/user/info?unique_id=charlidamelio",
  { headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const data = await res.json();
console.log(data.data.follower_count);

What can I build with a free TikTok API?

  • TikTok analytics dashboards for personal or client accounts
  • Trend monitoring scripts that track hashtag growth
  • Academic research datasets (comments, engagement rates)
  • Content idea tools that surface trending videos by niche
  • Browser extensions that show engagement data inline

Start free at tiktokapi.store — no credit card, instant access.

Start using the TikTok API for free

100 requests/day free. No credit card required. Instant API key.

Get your free API key