/v1/users/info-with-region
User info with region
Profil + Region/Sprache. Query: username.
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/tiktok-api/v1/users/info-with-region" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tiktok-api/v1/users/info-with-region", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tiktok-api/v1/users/info-with-region");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/tiktok-api/v1/users/info-with-region",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"id": "6611099612067856390",
"region": null,
"sec_uid": "MS4wLjABAAAA2EvW1E1RwMcww5EY5bG0z2TeJ3dusTXaAKNJBQatp8IGSbOvWYWRm6TIIZ46Q40v",
"language": "en",
"username": "jlo"
},
"meta": {
"timestamp": "2026-05-04T13:59:46.159Z",
"request_id": "2ef1ad50-7d84-4a39-a2a6-ac48cbc89fdd"
},
"status": "ok",
"message": "User region retrieved successfully",
"success": true
}