/api/v1/users/replies
User replies
Replies eines Users.
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/threads-api/api/v1/users/replies" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/threads-api/api/v1/users/replies", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/threads-api/api/v1/users/replies");
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/threads-api/api/v1/users/replies",
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": {
"count": 10,
"query": "site:threads.com/@zuck replies zuck",
"results": [
{
"url": "https://www.threads.com/@zuck",
"title": null,
"source": "live_web_search",
"snippet": "Clear filter",
"username": "zuck",
"post_code": null
},
{
"url": "https://www.threads.com/@zuck/replies",
"title": null,
"source": "live_web_search",
"snippet": "Mark Zuckerberg (@zuck) • Threads, Say more",
"username": "zuck",
"post_code": null
},
{
"url": "https://www.threads.com/@zuck/post/DO_ToA1Ed2L/fun-milestone-update-for-anyone-keeping-count-instagram-now-has-3-billion-monthl",
"title": null,
"source": "live_web_search",
"snippet": "Threads 5.5M Followers • 144 Threads • Mostly superintelligence and MMA takes. See the latest conversations with @zuck.",
"username": "zuck",
"post_code": "DO_ToA1Ed2L"
},
{
"url": "https://www.threads.com/@zuck/post/DMF6tMAxkX8/for-our-superintelligence-effort-im-focused-on-building-the-most-elite-and-talen",
"title": null,
"source": "live_web_search",
"snippet": null,
"username": "zuck",
"post_code": "DMF6tMAxkX8"
},
{
"url": "https://www.threads.com/@zuck/post/CuWGPjwrfq9",
"title": null,
"source": "live_web_search",
"snippet": null,
"username": "zuck",
"post_code": "CuWGPjwrfq9"
},
{
"url": "https://www.threads.com/@zuck/post/CvYovBlr77r",
"title": null,
"source": "live_web_search",
"snippet": null,
"username": "zuck",
"post_code": "CvYovBlr77r"
},
{
"url": "https://www.threads.com/@zuck/post/C20hsVCyTJt",
"title": null,
"source": "live_web_search",
"snippet": null,
"username": "zuck",
"post_code": "C20hsVCyTJt"
},
{
"url": "https://www.threads.com/@zuck/post/DOuZCx5j0Tt/heres-everything-i-announced-at-connect-today?hl=en",
"title": null,
"source": "live_web_search",
"snippet": null,
"username": "zuck",
"post_code": "DOuZCx5j0Tt"
},
{
"url": "https://www.threads.com/@zuck/post/DNQtqzGRWA7/threads-on-the-up-and-up-just-passed-400m-monthly-actives-on-here",
"title": null,
"source": "live_web_search",
…