TikTok Profile Info
Heavstal Social Intelligence retrieves real-time public profile information from TikTok accounts. It provides follower counts, bio, profile pictures, and engagement stats without requiring login.
Endpoint
Section titled “Endpoint”POST /tiktok-info
Request Parameters
Section titled “Request Parameters”| Field | Type | Required | Description |
|---|---|---|---|
| username | string | Yes | The unique TikTok username (e.g., “khaby.lame”). |
Example Usage
Section titled “Example Usage”const res = await fetch('https://heavstal.com.ng/api/v1/tiktok-info', {method: 'POST',headers: { 'Content-Type': 'application/json', 'x-api-key': 'YOUR_KEY'},body: JSON.stringify({ username: 'khaby.lame' })});
const data = await res.json();Successful Response
Section titled “Successful Response”{"status": "success","code": 200,"creator": "HEAVSTAL TECH","data": { "name": "Khaby Lame", "username": "khaby.lame", "followers": 161900000, "following": 78, "description": "If you want to laugh you are in the right place", "profile_picture": "https://p16-sign-va.tiktokcdn.com/..."}}