/api/v1/search/users
Search users
User-Suche.
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/threads-api/api/v1/search/users" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/threads-api/api/v1/search/users", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/threads-api/api/v1/search/users");
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/search/users",
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 Threads profile",
"results": [
{
"url": "https://www.threads.com/@zuck",
"title": "search operators",
"source": "live_web_search",
"snippet": "Too few matches were found",
"username": "zuck",
"post_code": null
},
{
"url": "https://www.threads.com/@zuck/post/DHbau1vvgLl?hl=en",
"title": "Show people what you're into by adding topics to your profile.",
"source": "live_web_search",
"snippet": "› @zuck",
"username": "zuck",
"post_code": "DHbau1vvgLl"
},
{
"url": "https://www.threads.com/@zuck/post/C4s6IiDL9rW?hl=en-gb",
"title": "Show people what you're into by adding topics to your profile.",
"source": "live_web_search",
"snippet": "Show people what you're into by adding topics to your profile. 5.5M Followers • 144 Threads • Mostly superintelligence and MMA takes. See the latest conversations with @ zuck .",
"username": "zuck",
"post_code": "C4s6IiDL9rW"
},
{
"url": "https://www.threads.com/@shaiba_hussain/post/DN8J5j5iDJZ/my-stupid-timeline-is-stuck-again-what-the-hell-threads-zuck",
"title": "Mark Zuckerberg (@zuck) on Threads",
"source": "live_web_search",
"snippet": "5.5M Followers • 144 Threads • Mostly superintelligence and MMA takes. See the latest conversations with @ zuck .",
"username": "shaiba_hussain",
"post_code": "DN8J5j5iDJZ"
},
{
"url": "https://www.threads.com/@carnage4life/post/DXzEPySFKz6/the-anecdotes-from-zuck-below-and-growing-revenue-year-over-year-in-a-mature",
"title": "My stupid timeline is stuck again what the hell threads @zuck",
"source": "live_web_search",
"snippet": "Trending now is rolling out to the US today so you can see what people are talking about on Threads . Enjoy!",
"username": "carnage4life",
"post_code": "DXzEPySFKz6"
},
{
"url": "https://www.threads.com/@zuck/post/C90rSTwO78K",
"title": null,
"source": "live_web_search",
"snippet": "The anecdotes from Zuck below and growing revenue 33% year over year in a mature business are testaments to how AI has made us more productive at Meta. In my experience, to get these sorts of gains takes a culture shift that is somewhat scary and uncomfortable as you need to strive to automate ...",
"username": "zuck",
"post_code": "C90rSTwO78K"
},
{
"url": "
…