Vai al contenuto
GET /v1/users/search

User search

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

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/tiktok-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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": {
        
…