Skip to content
GET /api/v1/users/replies

User replies

Replies eines Users.

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/threads-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "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",
…