Zum Inhalt springen
GET /v1/users/profile

User profile

Full TikTok user profile by username or numeric user id. Returns avatar, bio, follower / following counts and verified flag.

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/tiktok-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/tiktok-api/v1/users/profile" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tiktok-api/v1/users/profile", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tiktok-api/v1/users/profile");
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/profile",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "id": "6611099612067856390",
        "link": "https://www.tiktok.com/@jlo",
        "stats": {
            "likes": 85661282,
            "videos": 426,
            "followers": 17855147,
            "following": 309
        },
        "avatar": "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/d4a90dd0556e3bbbd2e82c8ab8d0de70~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=10399&refresh_token=c01126c1&x-expires=1779555600&x-signature=vPxB%2FuC8pe9RUQUIcnhXUcMGIFg%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=81f88b70&idc=no1a",
        "region": null,
        "sec_uid": "MS4wLjABAAAA2EvW1E1RwMcww5EY5bG0z2TeJ3dusTXaAKNJBQatp8IGSbOvWYWRm6TIIZ46Q40v",
        "language": "en",
        "nickname": "JLO",
        "username": "jlo",
        "verified": true,
        "signature": "The #1 Single SAVE ME TONIGHT with David Guetta OUT NOW 💫 OFFICE ROMANCE coming to Netflix June 5",
        "private_account": false
    },
    "meta": {
        "timestamp": "2026-05-21T17:51:09.136Z",
        "request_id": "e72d3413-f435-4b7e-a3a7-d9952ed6abff"
    },
    "status": "ok",
    "message": "User profile retrieved successfully",
    "success": true
}