Zum Inhalt springen
GET /v1/users/embed

User embed

Embed-Daten für ein TikTok-Profil. Query: username.

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

Beispiel-Response

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

{
    "data": {
        "html": "<blockquote class=\"tiktok-embed\" cite=\"https://www.tiktok.com/@jlo\" data-unique-id=\"jlo\" data-embed-from=\"oembed\" data-embed-type=\"creator\" style=\"max-width:780px; min-width:288px;\"> <section> <a target=\"_blank\" href=\"https://www.tiktok.com/@jlo?refer=creator_embed\">@jlo</a> </section> </blockquote> <script async src=\"https://www.tiktok.com/embed.js\"></script>",
        "type": "rich",
        "title": "JLO's Creator Profile",
        "width": "100%",
        "height": "100%",
        "version": "1.0",
        "username": "jlo",
        "video_id": null,
        "author_url": "https://www.tiktok.com/@jlo",
        "source_url": "https://www.tiktok.com/@jlo",
        "author_name": "JLO",
        "provider_url": "https://www.tiktok.com",
        "provider_name": "TikTok",
        "thumbnail_url": null,
        "thumbnail_width": null,
        "thumbnail_height": null
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:47.232Z",
        "request_id": "d0fe2c12-24d8-4d7c-91f9-5c1c72e431ca"
    },
    "status": "ok",
    "message": "User embed retrieved successfully",
    "success": true
}