Zum Inhalt springen
GET /v1/users/search

User search

Search TikTok users by free-text query. Returns ranked user matches with username, display name, follower count.

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 20,
        "query": "chef",
        "users": [
            {
                "username": "chefchrischo",
                "profile_url": "https://www.tiktok.com/@chefchrischo"
            },
            {
                "username": "chefreactions",
                "profile_url": "https://www.tiktok.com/@chefreactions"
            },
            {
                "username": "chefbae",
                "profile_url": "https://www.tiktok.com/@chefbae"
            },
            {
                "username": "chefthomson",
                "profile_url": "https://www.tiktok.com/@chefthomson"
            },
            {
                "username": "chefaaronsanchez",
                "profile_url": "https://www.tiktok.com/@chefaaronsanchez"
            },
            {
                "username": "chef__tyler",
                "profile_url": "https://www.tiktok.com/@chef__tyler"
            },
            {
                "username": "chefklosangeles",
                "profile_url": "https://www.tiktok.com/@chefklosangeles"
            },
            {
                "username": "chef.michael",
                "profile_url": "https://www.tiktok.com/@chef.michael"
            },
            {
                "username": "daronthechef",
                "profile_url": "https://www.tiktok.com/@daronthechef"
            },
            {
                "username": "thestayathomechef",
                "profile_url": "https://www.tiktok.com/@thestayathomechef"
            },
            {
                "username": "twisted.chef",
                "profile_url": "https://www.tiktok.com/@twisted.chef"
            },
            {
                "username": "rappingchef",
                "profile_url": "https://www.tiktok.com/@rappingchef"
            },
            {
                "username": "chefkeysh",
                "profile_url": "https://www.tiktok.com/@chefkeysh"
            },
            {
                "username": "chefsymon",
                "profile_url": "https://www.tiktok.com/@chefsymon"
            },
            {
                "username": "_.chefk",
                "profile_url": "https://www.tiktok.com/@_.chefk"
            },
            {
                "username": "chefthombateman",
                "profile_url": "https://www.tiktok.com/@chefthombateman"
            },
            {
                "username": "flakeysalt",
                "profile_url": "https://www.tiktok.com/@flakeysalt"
            },
            {
                "username": "chefp.s",
                "profile_url": "https://www.tiktok.com/@chefp.s"
            },
            {
                "username": "the_funnychef",
                "profile_url": "https://www.tiktok.com/@the_funnychef"
            },
            {
                "username": "chefpaige75",
                "profile_url": "https://www.tiktok.com/@chefpaige75"
            }
        ],
        "source": "brave_tiktok_search"
    },
    "meta": {
        
…