Μετάβαση στο περιεχόμενο
GET /api/v1/trending/search

Trending search

Aktuell trendende Such-Begriffe.

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/threads-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "count": 15,
        "query": "site:threads.com Threads trending today",
        "results": [
            {
                "url": "https://www.threads.com/@whatstrending",
                "title": null,
                "source": "live_web_search",
                "snippet": "Clear filter",
                "username": "whatstrending",
                "post_code": null
            },
            {
                "url": "https://www.threads.com/tag/Trending-Topics",
                "title": null,
                "source": "live_web_search",
                "snippet": "March 2, 2026 -",
                "username": null,
                "post_code": null
            },
            {
                "url": "https://www.threads.com/@threads/post/C4tIdJPOTeJ?hl=en",
                "title": null,
                "source": "live_web_search",
                "snippet": null,
                "username": "threads",
                "post_code": "C4tIdJPOTeJ"
            },
            {
                "url": "https://www.threads.com/tag/trending-now",
                "title": null,
                "source": "live_web_search",
                "snippet": null,
                "username": null,
                "post_code": null
            },
            {
                "url": "https://www.threads.com/@zuck/post/C4s6IiDL9rW/trending-now-is-rolling-out-to-the-us-today-so-you-can-see-what-people-are-talki?hl=en",
                "title": null,
                "source": "live_web_search",
                "snippet": "trending now · 610M threads",
                "username": "zuck",
                "post_code": "C4s6IiDL9rW"
            },
            {
                "url": "https://www.threads.com/@buffer/post/DUlS3gKESsI/threads-trending-topics-are-now-live-in-buffer-conversations-on-threads-move",
                "title": null,
                "source": "live_web_search",
                "snippet": null,
                "username": "buffer",
                "post_code": "DUlS3gKESsI"
            },
            {
                "url": "https://www.threads.com/@yusufshid/post/DXp3a5fE3W0/threads-akan-merilis-fitur-baru-trending-now-artinya-tren-dan-berita-terkini",
                "title": null,
                "source": "live_web_search",
                "snippet": null,
                "username": "yusufshid",
                "post_code": "DXp3a5fE3W0"
            },
            {
                "url": "https://www.threads.com/@buffer/post/DUlS52hkSZx/trending-topics-is-now-available-on-all-buffer-plans-including-free-we-hope-you-",
                "title": null,
                "source": "live_web_search",
                "snippet": null,
                "username": "buffer",
                "post_code": "DUlS52hkSZx"
            },
            {
                "url": "https://www.threads.com/@thebloggess/post/DFwg18Zu1Yq?hl=en",
                "title": null,
                "source": "live_web_search",
                "snippet"
…