/v1/users/embed
User embed
Embed-Daten für ein TikTok-Profil. 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/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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}