Zum Inhalt springen
GET /api/v1/users/posts

User posts

Posts eines Users.

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 15,
        "query": "site:threads.com/@zuck/post zuck",
        "results": [
            {
                "url": "https://www.threads.com/@zuck/post/DW4Gb79kQc0/today-were-sharing-our-new-model-family-muse-and-releasing-our-first-model",
                "title": null,
                "source": "live_web_search",
                "snippet": "Clear filter",
                "username": "zuck",
                "post_code": "DW4Gb79kQc0"
            },
            {
                "url": "https://www.threads.com/@zuck/post/DR0WsxRklXy?xmt=AQF0z3hzh412YUSDB4cy2eyXHzKgov3sFisrS-pc1qSvvQ",
                "title": "Mark Zuckerberg (@zuck) on Threads",
                "source": "live_web_search",
                "snippet": "Today we're sharing our new model family, Muse, and ...",
                "username": "zuck",
                "post_code": "DR0WsxRklXy"
            },
            {
                "url": "https://www.threads.com/@zuck/post/DNQtqzGRWA7/threads-on-the-up-and-up-just-passed-400m-monthly-actives-on-here",
                "title": "Mark Zuckerberg (@zuck) on Threads",
                "source": "live_web_search",
                "snippet": "We're entering a new era where AI glasses and other devices will change how we connect with technology and each other. The potential is enormous, but what matters most is making these experiences feel natural and truly centered around people. With this new studio, we're focused on making every ...",
                "username": "zuck",
                "post_code": "DNQtqzGRWA7"
            },
            {
                "url": "https://www.threads.com/@zuck/post/DO_ToA1Ed2L/fun-milestone-update-for-anyone-keeping-count-instagram-now-has-3-billion-monthl",
                "title": "Just passed 400M monthly actives on here",
                "source": "live_web_search",
                "snippet": "Just passed 400M monthly actives on here Threads on the up and up -- just passed 400M monthly actives on here 🔥",
                "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?hl=en",
                "title": "Instagram now has 3 billion monthly actives!",
                "source": "live_web_search",
                "snippet": "Threads on the up and up -- just passed 400M monthly actives on here 🔥",
                "username": "zuck",
                "post_code": "DMF6tMAxkX8"
            },
            {
                "url": "https://www.threads.com/@zuck/post/DW4Gb79kQc0",
                "title": null,
                "source": "live_web_search",
                "snippet": "Clear filter",
                "username": "zuck",
                "post_code": "DW4Gb79kQc0"
            },
            {
                "url": "https://www.threads.com/@zuck/post/DFNf73PJxOQ",
  
…