/v1/users/insights
User insights
Engagement insights for a TikTok user — average likes per post, engagement rate, post frequency, audience growth.
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/tiktok-api/v1/users/insights" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tiktok-api/v1/users/insights", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tiktok-api/v1/users/insights");
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/insights",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"id": "6611099612067856390",
"stats": {
"likes": 85661283,
"videos": 426,
"followers": 17855147,
"following": 309
},
"region": null,
"sec_uid": "MS4wLjABAAAA2EvW1E1RwMcww5EY5bG0z2TeJ3dusTXaAKNJBQatp8IGSbOvWYWRm6TIIZ46Q40v",
"language": "en",
"username": "jlo",
"verified": true,
"private_account": false
},
"meta": {
"timestamp": "2026-05-21T17:51:10.960Z",
"request_id": "d8ec90fc-3d56-48b0-93c1-11a94793f075"
},
"status": "ok",
"message": "User insights retrieved successfully",
"success": true
}