Get TikTok Place Info

Turn a TikTok place ID into the location record behind it. The response describes the point of interest itself, including its address, city, country and the category TikTok files it under, along with how many videos have been tagged there. That video count is a quick measure of how much attention a venue or district is drawing before you pull the posts.

Try on Playground
Endpoint Info
Request Method
:
GET
Request URL
:
https://api.primeapi.co/place-info?placeId={placeId}
Required Parameters
:
placeId
Request Examples
Request Flow
:
Place Info is a single GET call to /place-info, and placeId has to travel with it in the query string. Swap YOUR_API_KEY for your own key and both snippets below run as they are.
Authentication
:
Header based. Send X-PrimeAPI-Key with every request — there is no OAuth handshake and no token to refresh.
Credits
:
One Place Info call costs 1 credit. Your remaining balance comes back on every response in the X-PrimeAPI-Balance header, so you can watch usage without a second lookup.
cURL
curl -X GET "https://api.primeapi.co/place-info?placeId=22535796481538024" \
  -H "X-PrimeAPI-Key: YOUR_API_KEY"
Python - Requests
import requests

url = "https://api.primeapi.co/place-info?placeId=22535796481538024"
headers = {"X-PrimeAPI-Key": "YOUR_API_KEY"}

response = requests.get(url, headers=headers)

print(response.json())
print("Credits left:", response.headers.get("X-PrimeAPI-Balance"))
Endpoint Response
Example URL
:
https://api.primeapi.co/place-info?placeId=22535796481538024
Content Type
:
JSON
Example Response
{
    "extra": {
        "fatal_item_ids": [],
        "logid": "202501180029112900DD32BF27D642E532",
        "now": 1737160152000
    },
    "log_pb": {
        "impr_id": "202501180029112900DD32BF27D642E532"
    },
    "poiInfo": {
        "poi": {
            "address": "Ho Chi Minh City, Vietnam",
            "allLevelGeoPoiInfo": [],
            "category": "District",
            "city": "Ho Chi Minh City",
            "cityCode": "1580578",
            "country": "",
            "countryCode": "1562822",
            "fatherPoiId": "",
            "fatherPoiName": "",
            "id": "22535796481538024",
            "indexEnabled": true,
            "isClaimed": false,
            "isCollected": false,
            "name": "District 12",
            "province": "",
            "ttTypeCode": "19a3a2",
            "ttTypeNameMedium": "Places",
            "ttTypeNameSuper": "Place and Address",
            "ttTypeNameTiny": "District",
            "type": 1,
            "typeCode": ""
        },
        "stats": {
            "videoCount": 636501
        }
    },
    "shareMeta": {
        "desc": "Ho Chi Minh City, Vietnam",
        "title": "District 12"
    },
    "statusCode": 0,
    "status_code": 0,
    "status_msg": ""
}
Related Endpoints

More TikTok Place Endpoints

View all Place Endpoints
Contact
You can contact us via Telegram or Gmail
Telegram Logo
Telegram
@primeapi_co
Gmail Logo
Gmail
primeapico@gmail