Unofficial TikTok Current Region API
GET/api/v1/current_region
Get an account's current region (country) by its numeric user id.
| Parameter | Description | |
|---|---|---|
user_id | required | The numeric TikTok user id (from /profile → data.user.id). |
Returns
user_id, the account's current region (ISO code, e.g. JP) and its full region_name (e.g. Japan).
Example Request
https://dev.omar-thing.site/api/v1/current_region?user_id=107955&key=YOUR_API_KEY
Example Response
{
"data": {
"region": "JP",
"region_name": "Japan",
"user_id": "107955"
},
"status": "success"
}Sends a live request using your API key above.
More Profiles & Users endpoints
- Unofficial TikTok Profile API — Fetch a user's profile by username.
- Unofficial TikTok Analytics API — Audience insights for a public creator account: follower breakdown by country, age and gender, an overview for a date range, and growth milestones. Pass
videofor a single video's stats. - Unofficial TikTok Followers API — List an account's followers.
- Unofficial TikTok Following API — List the accounts a user follows.