> **For coding agents and LLMs:** This is one page from the Social Fetch docs (markdown export). The sections below mirror the orientation block in [`/llms.txt`](https://www.socialfetch.dev/llms.txt); use [`/llms.json`](https://www.socialfetch.dev/llms.json) when you need a structured operation inventory. The catalog covers documented operations with on-site reference pages.

## This page

- **On-site (HTML):** [https://www.socialfetch.dev/docs/api/v1/tiktok/users/search/get](https://www.socialfetch.dev/docs/api/v1/tiktok/users/search/get)
- **Markdown (.mdx) URL:** [https://www.socialfetch.dev/docs/api/v1/tiktok/users/search/get.mdx](https://www.socialfetch.dev/docs/api/v1/tiktok/users/search/get.mdx)

## API base URL and authentication

- **API origin (from OpenAPI `servers`):** `https://api.socialfetch.dev`
- **Authentication:** send `x-api-key: sfk_...` on `/v1/**` routes unless the operation is explicitly anonymous (check OpenAPI `security`, the [API reference hub](https://www.socialfetch.dev/docs/api.mdx), [`/llms.txt`](https://www.socialfetch.dev/llms.txt), or [`/llms.json`](https://www.socialfetch.dev/llms.json) for each route).
- **OpenAPI JSON:** [https://www.socialfetch.dev/openapi.json](https://www.socialfetch.dev/openapi.json)

## Recommended docs entrypoints (this site)

- [Documentation overview](https://www.socialfetch.dev/docs.mdx) — top-level orientation (markdown).
- [Quickstart](https://www.socialfetch.dev/docs/quickstart.mdx) — authenticate with `x-api-key`, validate auth with `whoami`, and understand the JSON envelope.
- [SDK](https://www.socialfetch.dev/docs/sdk.mdx) — official TypeScript SDK guide, including `SocialFetchClient`, `Result`, and `unwrap()`.
- [SDK reference](https://www.socialfetch.dev/docs/sdk-reference.mdx) — exhaustive SDK method inventory and route mapping for agents, tooling, and power users.
- [Choose the right endpoint](https://www.socialfetch.dev/docs/choose-endpoint.mdx) — task-oriented route selection for smoke tests, profiles, list endpoints, and single-item lookups.
- [Capability matrix](https://www.socialfetch.dev/docs/capability-matrix.mdx) — fast comparison of identifiers, pagination, outcomes, media download, and SDK coverage.
- [`/llms.json`](https://www.socialfetch.dev/llms.json) — structured machine-readable operation inventory with parameter names, pagination, outcomes, credits, and SDK mapping.
- [API reference hub](https://www.socialfetch.dev/docs/api.mdx) — human-friendly index of operations with links into generated pages.
- [Errors](https://www.socialfetch.dev/docs/errors.mdx) — shared error envelope and HTTP status guidance.
- [Credits](https://www.socialfetch.dev/docs/credits.mdx) — metering, `402`, and planning batch jobs.
- Outcome semantics such as `found`, `not_found`, and `private` are documented in [Errors](https://www.socialfetch.dev/docs/errors.mdx) and on operation pages when present in the OpenAPI contract.

## Markdown docs convention

- Every docs page has a markdown twin: append **`.mdx`** to the docs pathname (for example `/docs/quickstart` → `/docs/quickstart.mdx`).
- Agents that send `Accept: text/markdown` on `/docs/**` HTML URLs may receive markdown directly (same URL, `Vary: Accept`).

---
# Search TikTok users (https://www.socialfetch.dev/docs/api/v1/tiktok/users/search/get)

## Summary

Search TikTok users by keyword.

**Tags:** `TikTok`

## HTTP

- **Method:** GET
- **Path:** `/v1/tiktok/users/search`
- **Base URL:** `https://api.socialfetch.dev`

## Capability summary

- **SDK mapping:** `client.tiktok.searchUsers({ query, cursor? })`
- **Pagination:** cursor via `cursor`, next cursor: `data.page.nextCursor`, has more: `data.page.hasMore`

## Credits

- **Base:** 1 credit per successful lookup.
- **Maximum on success (200):** 1 credit.
- **Normalization failure (502):** 1 credit charged.
- **Authoritative field:** `meta.creditsCharged`.

## Authentication

- **`x-api-key`**: API key (`sfk_...`)

## Parameters

### `query` (query)

- **Required:** yes
- **Constraints:** type `string`; minLength: 1; maxLength: 512
- **Description:** Search query text for TikTok users.

### `cursor` (query)

- **Required:** no
- **Constraints:** type `string`; minLength: 1
- **Description:** Opaque pagination cursor returned by a previous response.

## Pagination

This endpoint uses **cursor-based pagination** via the `cursor` query parameter.

- Read **hasMore** from `data.page.hasMore`.
- When that value is `true`, read **nextCursor** from `data.page.nextCursor` and pass it as the `cursor` query parameter on the **next** request (URL-encode when building a query string).
- Omit `cursor` on the **first** request.
- Stop when **hasMore** is `false` or **nextCursor** is null (end of list).

## Responses (status codes)

- **200**: User search results for the requested query.
- **400**: Invalid query parameters
- **401**: Missing or invalid API key
- **402**: Insufficient credits
- **500**: Unexpected or billing error
- **502**: Lookup could not be completed from the response (unexpected or invalid data).
- **503**: Service temporarily unavailable; safe to retry with backoff.

## Response body (200)

User search results for the requested query.

### Field outline

- **data** (required) — type `object`. Endpoint-specific response payload.
  - **query** (required) — type `string`. Search query that was evaluated for this response.
  - **users** (required) — type `array`. Users returned for the search query.
    - _items:_
      - **platform** (required) — type `string`; enum: tiktok. Social platform for this user.
      - **handle** (required) — type `string`; minLength: 1. TikTok username without the leading @.
      - **displayName** (required) — type `string`; nullable. Public display name shown for the user, when available.
      - **bio** (required) — type `string`; nullable. Profile biography text, when available.
      - **avatarUrl** (required) — type `string`; nullable. Profile image URL for the user, when available.
      - **verified** (required) — type `boolean`. Whether the user is marked as verified.
      - **profileUrl** (required) — type `string`; minLength: 1. Canonical public TikTok profile URL.
      - **privateAccount** (optional) — type `boolean`. Whether the account is private, when reported.
      - **platformUserId** (optional) — type `string`. TikTok user id as a string when available.
      - **secUid** (optional) — type `string`. TikTok stable user identifier for advanced integrations, when available.
      - **metrics** (required) — type `object`. Public profile metrics returned with this search result.
        - **followers** (required) — type `integer`; minimum: 0; nullable. Follower count when available.
        - **following** (required) — type `integer`; minimum: 0; nullable. Following count when available.
        - **likes** (required) — type `integer`; minimum: 0; nullable. Total profile likes when available.
        - **posts** (required) — type `integer`; minimum: 0; nullable. Public post count when available.
  - **totalUsers** (required) — type `integer`; minimum: 0. Number of users returned in this response.
  - **page** (required) — type `object`. Pagination information for the current response.
    - **nextCursor** (required) — type `string`; nullable. Cursor to pass in the next request when another page is available.
    - **hasMore** (required) — type `boolean`. Whether another page of users is likely available.
- **meta** (required) — type `object`. Metadata describing the request and billing outcome.
  - **requestId** (required) — type `string`; minLength: 1. Unique request identifier for tracing this API call.
  - **creditsCharged** (required) — type `integer`; minimum: 0. Credits charged for this request.
  - **version** (required) — type `string`; enum: v1. Public API version that served the response.

### Example JSON (results)

```json
{
  "data": {
    "query": "taylor",
    "users": [
      {
        "platform": "tiktok",
        "handle": "t.a.y.l.o.r214",
        "displayName": "t a y l o r",
        "bio": "t a y l o r",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/f04f92fffd8b6b16f0132fc6b6d57815~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=043a4ab1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=GnynQ4QGGd9QnKCP%2B%2F2VCAV%2F6Tg%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@t.a.y.l.o.r214",
        "privateAccount": false,
        "platformUserId": "7509587616057984030",
        "secUid": "MS4wLjABAAAACD2XdDxJiUNdap1dTsJS44Jfmir7E2zzz6l4cKl5EC4GTXgAydTFLZNWPuAjNfOt",
        "metrics": {
          "followers": 1011,
          "following": 385,
          "likes": 23190,
          "posts": 2
        }
      },
      {
        "platform": "tiktok",
        "handle": "tay_tay_spam..pt2",
        "displayName": "taylor🩵",
        "bio": "taylor🩵",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/3c2215161f9f21768386cb83351dd304~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=0b5b7aa2&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=20I2zCWDM2dLl0Uh4ZzgZr%2BHchY%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@tay_tay_spam..pt2",
        "privateAccount": false,
        "platformUserId": "7134520732457042986",
        "secUid": "MS4wLjABAAAAy7YzCdKntdgPr_YN8q7_Qkd9Tq621Bh7T6B1c7uBC-NT-uJ-uldIiU9hM42i0nX9",
        "metrics": {
          "followers": 907,
          "following": 278,
          "likes": 20771,
          "posts": 254
        }
      },
      {
        "platform": "tiktok",
        "handle": "taygrimesss",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6824237bb82744783dc08bde11169ff2~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=da0f5449&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=W8EvapsGRCeNPrZPGMup4q7riFA%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taygrimesss",
        "privateAccount": false,
        "platformUserId": "6693888833174340613",
        "secUid": "MS4wLjABAAAAtg8hlx9vJS8V-bW0W2Oya2QxPvfWfAahQO9ew0_UPSOWE3bVXAQqAKzhjQIJPASl",
        "metrics": {
          "followers": 116539,
          "following": 115,
          "likes": 1173585,
          "posts": 3
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylorr.r1",
        "displayName": "taylor",
        "bio": "taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/b8717fbddd99c3941b918410525e35ab~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=66bf94d6&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=sIIHdqHzz5aJ1WkieX%2BuH7QCD4E%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylorr.r1",
        "privateAccount": false,
        "platformUserId": "6884311149308986374",
        "secUid": "MS4wLjABAAAAmZjeyZT921cKex7QZpDP-TSsuPMbEQsnrYzE_D3qqOQcQvbe4IoPlOej3uZz-TI-",
        "metrics": {
          "followers": 94465,
          "following": 74,
          "likes": 5879995,
          "posts": 114
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylorxxbanks",
        "displayName": "Taylor Banks",
        "bio": "Taylor Banks",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/fbe7c18350e0ad0bd3f87f0fa1436021~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=1957b2d9&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=efDPLUCzbaJH%2FPECJut7qYzqRIQ%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylorxxbanks",
        "privateAccount": false,
        "platformUserId": "7230201806583481345",
        "secUid": "MS4wLjABAAAANm2f6ac61OvAKQFEhI4DoC0G9nALXKgipI_NV2Pc0x_j9dBcwkoY2juLwErcmVAT",
        "metrics": {
          "followers": 1140174,
          "following": 354,
          "likes": 11635636,
          "posts": 366
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor.w.8",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/6c6bf5ea83579d4843df73c285258021~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=6a4a6df7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=HEtXnky%2Fjfcr5M7nggaExinv40A%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor.w.8",
        "privateAccount": false,
        "platformUserId": "6983698242857632773",
        "secUid": "MS4wLjABAAAA3qdlRbkN8gezdJc1kPfdxW9XRlMi-AwuYr1yLl_4zqLCyY23UpoAEuoPpNE7_eHc",
        "metrics": {
          "followers": 94703,
          "following": 44,
          "likes": 488948,
          "posts": 15
        }
      },
      {
        "platform": "tiktok",
        "handle": ".ttaylorr0",
        "displayName": "t",
        "bio": "t",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e463b4a2ca84a8fd52183a4d6b0b7339~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=229e8473&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Qd%2BeCQZ7GyGnu9BeuVGh8zHkzjg%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@.ttaylorr0",
        "privateAccount": false,
        "platformUserId": "6694826248047084550",
        "secUid": "MS4wLjABAAAA5ICepLMLTZqYxT9P4x3M-JWxOv2U4m_-usxHF3Q9hIb9FBA25_-dxOUxmo8l5jty",
        "metrics": {
          "followers": 383,
          "following": 225,
          "likes": 1344,
          "posts": 0
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylorladyga",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/51707256ba23fb075b89240319d9e6c8~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=fe1b4f3f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=8orMMZAWm1AfaP%2FLLskJhguLFyM%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylorladyga",
        "privateAccount": false,
        "platformUserId": "6682083485458760710",
        "secUid": "MS4wLjABAAAACja4NweVICa3VsX1v6JUsERoIbSlNNh5BnRImoVatQH3tmXAi2sEpHLI4CAEPcd3",
        "metrics": {
          "followers": 175154,
          "following": 114,
          "likes": 6237106,
          "posts": 154
        }
      },
      {
        "platform": "tiktok",
        "handle": "tayy.viic",
        "displayName": "taylor",
        "bio": "taylor",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/279637d6ee22c667e79ec986b7aa12ea~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=56d974e6&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=eW3n7K0uqxz3IucmljzLeVpLzb0%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@tayy.viic",
        "privateAccount": false,
        "platformUserId": "6606680799994576901",
        "secUid": "MS4wLjABAAAAwZvFuDmUtFayhHuOwePT_xnngsISur0Xb-nQNkze0M4Mn5_GKX_vh-sBWrCp5dMM",
        "metrics": {
          "followers": 413287,
          "following": 510,
          "likes": 12510288,
          "posts": 861
        }
      },
      {
        "platform": "tiktok",
        "handle": "housewifeswag",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/4103c915de93439f6673163d0f915516~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=50de0a52&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Ccp9SieH0kMJBPBPoi5teBQ7s3Y%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@housewifeswag",
        "privateAccount": false,
        "platformUserId": "6764192066961671174",
        "secUid": "MS4wLjABAAAA4OALINhvwrw3j9s7wxtcHf1ZrfxkT97S6Kf717yIuEnq8fuGsF0PFCNzKWLMPSSx",
        "metrics": {
          "followers": 120060,
          "following": 1301,
          "likes": 455939,
          "posts": 151
        }
      },
      {
        "platform": "tiktok",
        "handle": "thexrealtaylor",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/6e091537f3f725fb4c4a6020f6145e02~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=b621530c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=7a4OjCWRe5BbqnSBTiBJNl8xXbI%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@thexrealtaylor",
        "privateAccount": false,
        "platformUserId": "6942262690883830789",
        "secUid": "MS4wLjABAAAAd2q7yepZy-3deXUy7AiNagG07pVEiTN-G6aFh0M9LPIiTiMAjd5sd_-fsqF8LTRK",
        "metrics": {
          "followers": 720772,
          "following": 14,
          "likes": 8683625,
          "posts": 331
        }
      },
      {
        "platform": "tiktok",
        "handle": "tayyrc",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/4cb2577c8e78a5aaddf614e391093d6b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=06a86286&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=U1GUW2Gqa%2FzTGgwdNT6d%2FMHdBtI%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@tayyrc",
        "privateAccount": false,
        "platformUserId": "6648701836395479045",
        "secUid": "MS4wLjABAAAAWDhNsj7G6Hhq8w4URkMA1jVWNo9nwPfBBV-y1T2pOwQFFlKEgwoyDOWn30W6dFKX",
        "metrics": {
          "followers": 80043,
          "following": 446,
          "likes": 294616,
          "posts": 113
        }
      },
      {
        "platform": "tiktok",
        "handle": "taytay_love17",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/1870f2adc1e1d484fcef3dd8f4d8fc8f~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=0eaeaccf&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=MLcZhKZNJ6lyLSd15yb%2FoUSzcNA%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taytay_love17",
        "privateAccount": false,
        "platformUserId": "6627316323318906885",
        "secUid": "MS4wLjABAAAAGGUc_-OR5IhLkmOfNax6Mhx7Wxz_5giQ3b0He_aYsMLh1Qy6GqDvIL67qX1fGHVe",
        "metrics": {
          "followers": 115790,
          "following": 1015,
          "likes": 1261114,
          "posts": 92
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylorpoole.96",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/4342b124c66542b1b5dba1f60a2a2bb2~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=3f8870ee&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=pQgp7GJMp%2FzArQ22jtJ9EdxRXfk%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylorpoole.96",
        "privateAccount": false,
        "platformUserId": "6701004571622671365",
        "secUid": "MS4wLjABAAAAAl0u0siID9O-OkgCb34t_688jp1TZd_UHFITPO5W5YKhFRD7eS0H6XNVvvWOfFkL",
        "metrics": {
          "followers": 316879,
          "following": 231,
          "likes": 10294911,
          "posts": 757
        }
      },
      {
        "platform": "tiktok",
        "handle": "tayylorhill",
        "displayName": "taylor",
        "bio": "taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6d9a5ae5deb0db7031b374d77e8e6329~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=2cb12016&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=UKL%2B%2BCWEHTgxF1o9lhE7M3TlR5c%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@tayylorhill",
        "privateAccount": false,
        "platformUserId": "6692101997985154053",
        "secUid": "MS4wLjABAAAA4qN5iGpXM5lNiHy3VRbl_pSfPH65c_gRqzKjT_3eAQ9pjliR6j0e1oUjkmSJVpon",
        "metrics": {
          "followers": 209676,
          "following": 136,
          "likes": 3331161,
          "posts": 18
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylorllynne",
        "displayName": "taylor!",
        "bio": "taylor!",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/c0c29211af175d0fe4e81cdba7158cd7~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=83e464f0&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=ziVuhGR7HHjdqwIdncdSHsWS4Vc%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylorllynne",
        "privateAccount": false,
        "platformUserId": "1472813",
        "secUid": "MS4wLjABAAAAnZrS-FBvIzz3F7tQPARcjPkczE16OvpiR9nMLrz_lQM",
        "metrics": {
          "followers": 98533,
          "following": 1112,
          "likes": 4218207,
          "posts": 180
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylorrloll",
        "displayName": "taylor💕",
        "bio": "taylor💕",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/012fe1499579b0c274fa3abbae106f35~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=095ecbe4&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=B57d990jm3gMMsE%2BWzm2f%2FiU5Fo%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylorrloll",
        "privateAccount": false,
        "platformUserId": "6644749922209120262",
        "secUid": "MS4wLjABAAAA3IOFAk-fhHWJqeF2x9hP5Yo4-r-SCyYrhvicjHaMc3yojtRbcrjwVhQ-lzWkia3u",
        "metrics": {
          "followers": 319,
          "following": 99,
          "likes": 12278,
          "posts": 4
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor.madison25",
        "displayName": "taylor",
        "bio": "taylor",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/8b895da2c3b69b0f8777bb067fc0cc2a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=bbb8ee9e&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=5AtuwPYkc%2B1ulbZ63Hea0kasWAo%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor.madison25",
        "privateAccount": false,
        "platformUserId": "6582237037020725253",
        "secUid": "MS4wLjABAAAAbz7_ROXR79IJYDX9R_of9ALGyJ1DV0Cvr3q3nfn28yyMEnJ2ZTxWiFlkYzwB4_4v",
        "metrics": {
          "followers": 694716,
          "following": 1640,
          "likes": 22018579,
          "posts": 133
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor44498",
        "displayName": "Taylor🩵",
        "bio": "Taylor🩵",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/8b20e45d8b5f6ad735ee9678f925c5c6~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=7b6ca0c4&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=mfSMg1nzFi161iXzQjJOeupp684%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor44498",
        "privateAccount": false,
        "platformUserId": "7311105990366643242",
        "secUid": "MS4wLjABAAAAIu5WsVGXcTYbHgyBlBMIJacACeI7vZ21e02ZeD5OtrF4L2GnonvsmDewnjIzzu_I",
        "metrics": {
          "followers": 1206,
          "following": 517,
          "likes": 32484,
          "posts": 176
        }
      },
      {
        "platform": "tiktok",
        "handle": "tayloprsuq6",
        "displayName": "Taylor 💕",
        "bio": "Taylor 💕",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=4c8af4f9&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=LxZGhzUvqJ7CMXrYpGclm05Ua4U%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@tayloprsuq6",
        "privateAccount": false,
        "platformUserId": "7595959687460193335",
        "secUid": "MS4wLjABAAAABArnPA58ZN-e7PXg_bYQYqOBkmlX2BAbOJRXrzHqSGQuuS0JGR2snDXF6xMjiEQ-",
        "metrics": {
          "followers": 39,
          "following": 25,
          "likes": 0,
          "posts": 0
        }
      },
      {
        "platform": "tiktok",
        "handle": "tay.taylor031",
        "displayName": "tay.taylor031",
        "bio": "tay.taylor031",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/2589f90349b498e8f8e2fb46150ed864~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=a0d9464e&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=22rFKlGZjixyevBpP2vPEb9dF7c%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@tay.taylor031",
        "privateAccount": false,
        "platformUserId": "7446830288485237802",
        "secUid": "MS4wLjABAAAAvDvzQ5sH2nVkCS2ukzHtPVSiB7bHlR6yW4lys9QyGmZeugNCeKt_4tgC0oR_JwQ0",
        "metrics": {
          "followers": 5544,
          "following": 30,
          "likes": 48551,
          "posts": 106
        }
      },
      {
        "platform": "tiktok",
        "handle": "ugc.taylor",
        "displayName": "taylor",
        "bio": "taylor",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/c258afa2024412e2f8a437ba607a5764~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=8f48f2b7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=zo5rqwphFCrgVy7ci46gqjO%2FFyM%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@ugc.taylor",
        "privateAccount": false,
        "platformUserId": "7301562089041839146",
        "secUid": "MS4wLjABAAAAu9xPCZ_MMwGebP3AC8c-iJwds5xBlz0sOHz7_1sPA7TQV2hJvmbCeXL8wgNpd9ng",
        "metrics": {
          "followers": 121680,
          "following": 82,
          "likes": 1629893,
          "posts": 164
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor.505",
        "displayName": "taylor.505",
        "bio": "taylor.505",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/2007b2427af0be65fbbef237f337732b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=6405d735&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=kI642O1ve615W3ITDfMvEwqyPLU%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor.505",
        "privateAccount": false,
        "platformUserId": "7605304793633047559",
        "secUid": "MS4wLjABAAAAOGHVMpwSpFHMsvHZb4lpkwkIrp329-p5CWWLmUidoasVyhosE6qWghUvDyKARx3T",
        "metrics": {
          "followers": 993,
          "following": 767,
          "likes": 19564,
          "posts": 250
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor..222",
        "displayName": "taylor",
        "bio": "Instagram: tay.lor_512",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/44c0723c6d1b0791cb645b4c7bada945~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=ca3f24c7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=7nyAYeQBqhumRnObSOKpFHgKhxU%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor..222",
        "privateAccount": false,
        "platformUserId": "220826586281979904",
        "secUid": "MS4wLjABAAAAnibD8R2TzHyUf326L8a3zB_o1YIWkU02wiUuHQzhPQ0HUnBmU_VBw7qvVs4E_zTv",
        "metrics": {
          "followers": 2916,
          "following": 2988,
          "likes": 4503,
          "posts": 4
        }
      },
      {
        "platform": "tiktok",
        "handle": "taayyylorrr._",
        "displayName": "taylor ☆",
        "bio": "taylor ☆",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6fea94d53888d0fa7a42d1c220ed249b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=c9c1f2f3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=cPuYr7Nev5PRJQdZkRG7siW5sM0%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taayyylorrr._",
        "privateAccount": false,
        "platformUserId": "6805595470682752006",
        "secUid": "MS4wLjABAAAAIVMkVzvSZt0aVyKa--2j3PGrF21B2ynyMjie1eOIP7Nvl2gbb9F-7uEBFd4wPXps",
        "metrics": {
          "followers": 2913,
          "following": 78,
          "likes": 17149,
          "posts": 12
        }
      },
      {
        "platform": "tiktok",
        "handle": "t4ylor.1",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/6e10e849bcb4afb13084d4c10b2fb352~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=4965db64&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=4DVewoKPEUo1roE00ySGs2tAQ4o%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@t4ylor.1",
        "privateAccount": false,
        "platformUserId": "7014083833852544006",
        "secUid": "MS4wLjABAAAA1REeBtQi7qPXPP8dpUBwzdatnYHYbnAzWmr7ISzkof_jZYKVIo4l3Qg64DeuOWU0",
        "metrics": {
          "followers": 122770,
          "following": 36,
          "likes": 769736,
          "posts": 6
        }
      },
      {
        "platform": "tiktok",
        "handle": "tayloralmond.x",
        "displayName": "Taylor🌟",
        "bio": "Taylor🌟",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/dcddaf167aa696b024be5c47b6d5c1a9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=280e7718&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=RKpOvOSaYWMbzp8kXLmJt6egnVY%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@tayloralmond.x",
        "privateAccount": false,
        "platformUserId": "6580213740917145605",
        "secUid": "MS4wLjABAAAAFF1hneNIDOZNbH4gudFIUdxo0E6bRli8ZzBuxyFwqjbaUSAw1ExMYvpMsnn8Bp9X",
        "metrics": {
          "followers": 141523,
          "following": 2653,
          "likes": 5073561,
          "posts": 44
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor._.805",
        "displayName": "taylor._.805",
        "bio": "taylor._.805",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/4350270a10ebb44f9527b456871195bb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=3f65ae7a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=2ruS%2BJEPFnWbJlsRUx58iR0jHkI%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor._.805",
        "privateAccount": false,
        "platformUserId": "7481306039574430762",
        "secUid": "MS4wLjABAAAAV357zINVpvtmkhpxWkYXrEbnT44VPh4aJ4LLTPNpSvYBC8V6PM4PO1B7A8wRYf63",
        "metrics": {
          "followers": 6,
          "following": 11,
          "likes": 0,
          "posts": 0
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor24rd",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/667421fd29bd97528229fe683dec00d5~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=66f1ac4e&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=5z1yjD1uY3DO%2FfSV1VQw2yTXMWA%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor24rd",
        "privateAccount": false,
        "platformUserId": "7187012339828409350",
        "secUid": "MS4wLjABAAAA3Hanyg0yJk6Sa-1tKuaW74U8Dy5SuQ2nS4mFfc3Mt1iF8tE3RWoabLqPZapCM7Ca",
        "metrics": {
          "followers": 432408,
          "following": 350,
          "likes": 2648992,
          "posts": 1016
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylorfrankiepaul",
        "displayName": "Taylor Paul",
        "bio": "Taylor Paul",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/eec6d4106a85e142dc6e03e8a0224996~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=5609efac&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=vt0r5zALAqcg1sEZWKihsUMxeLw%3D",
        "verified": true,
        "profileUrl": "https://www.tiktok.com/@taylorfrankiepaul",
        "privateAccount": false,
        "platformUserId": "6748438126324450310",
        "secUid": "MS4wLjABAAAAcSckhRsmM__0FMxk8U-4gLZbDaEy3Tb15bjvjSltog-P0ySxkdwQDzqCaoQeUg2p",
        "metrics": {
          "followers": 6209012,
          "following": 1227,
          "likes": 269566053,
          "posts": 1440
        }
      }
    ],
    "totalUsers": 30,
    "page": {
      "nextCursor": "30",
      "hasMore": true
    }
  },
  "meta": {
    "requestId": "playground-example",
    "creditsCharged": 1,
    "version": "v1"
  }
}
```

### Example JSON (paginated)

```json
{
  "data": {
    "query": "taylor",
    "users": [
      {
        "platform": "tiktok",
        "handle": "taylorr.mjohnson",
        "displayName": "taylor",
        "bio": "taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/d29e9fbe227a2a2f66c6fb3808f31e4c~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=cecf2601&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=p6N%2BhNIiVdx3V4scHTclmEAz5Po%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylorr.mjohnson",
        "privateAccount": false,
        "platformUserId": "6781280543125668869",
        "secUid": "MS4wLjABAAAAKHDEHbjxCTFLMTKWt59bMEgmT3L-vQ7oygAZxKAmYpw6F7FFXTvTI_uLsLyvOjF2",
        "metrics": {
          "followers": 95915,
          "following": 3042,
          "likes": 88911,
          "posts": 0
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylorrloll",
        "displayName": "taylor💕",
        "bio": "taylor💕",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/012fe1499579b0c274fa3abbae106f35~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=45286ce5&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=mHnHJgk0tqbXSRV9p%2B5dDPdDkjI%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylorrloll",
        "privateAccount": false,
        "platformUserId": "6644749922209120262",
        "secUid": "MS4wLjABAAAA3IOFAk-fhHWJqeF2x9hP5Yo4-r-SCyYrhvicjHaMc3yojtRbcrjwVhQ-lzWkia3u",
        "metrics": {
          "followers": 319,
          "following": 99,
          "likes": 12278,
          "posts": 4
        }
      },
      {
        "platform": "tiktok",
        "handle": "tay.quin17",
        "displayName": "Taylor💕",
        "bio": "Taylor💕",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/d3328a7088857a7cbefe0ff07998dae0~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=c29aff76&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=k6KxP6jTCUpk8K8P%2FKLDgON6VZY%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@tay.quin17",
        "privateAccount": true,
        "platformUserId": "7088856834406482990",
        "secUid": "MS4wLjABAAAAGt1L-PUkJY4ZFdXaRLVNYnaEnZgNxL4KRy8aladf9dLp9D359vH4BGq0Qds5lTBD",
        "metrics": {
          "followers": 756,
          "following": 5850,
          "likes": 37157,
          "posts": 0
        }
      },
      {
        "platform": "tiktok",
        "handle": "tay.taylor031",
        "displayName": "tay.taylor031",
        "bio": "tay.taylor031",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/2589f90349b498e8f8e2fb46150ed864~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=1acb3880&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=vaDuRma1rG1U8nIZ9gjKyR5duqs%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@tay.taylor031",
        "privateAccount": false,
        "platformUserId": "7446830288485237802",
        "secUid": "MS4wLjABAAAAvDvzQ5sH2nVkCS2ukzHtPVSiB7bHlR6yW4lys9QyGmZeugNCeKt_4tgC0oR_JwQ0",
        "metrics": {
          "followers": 5539,
          "following": 30,
          "likes": 48553,
          "posts": 106
        }
      },
      {
        "platform": "tiktok",
        "handle": "teyanataylor90",
        "displayName": "💕",
        "bio": "💕",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e850b8cb5e4bfcf5ed0f69bcf10d8949~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=88886d37&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=E0rxIUD9N%2BObV8jjcnos96oGtqw%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@teyanataylor90",
        "privateAccount": false,
        "platformUserId": "7059766617250858031",
        "secUid": "MS4wLjABAAAAstNGGnuAzi_ij7wraBwu1gDX2HFOgp2sQ4T5_iMDykLLTvNCJzxoLGGJgkLmMJQn",
        "metrics": {
          "followers": 1106498,
          "following": 57,
          "likes": 26920162,
          "posts": 135
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor._.805",
        "displayName": "taylor._.805",
        "bio": "taylor._.805",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/4350270a10ebb44f9527b456871195bb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=3f65ae7a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=2ruS%2BJEPFnWbJlsRUx58iR0jHkI%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor._.805",
        "privateAccount": false,
        "platformUserId": "7481306039574430762",
        "secUid": "MS4wLjABAAAAV357zINVpvtmkhpxWkYXrEbnT44VPh4aJ4LLTPNpSvYBC8V6PM4PO1B7A8wRYf63",
        "metrics": {
          "followers": 6,
          "following": 11,
          "likes": 0,
          "posts": 0
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylorgrace4211",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/dd40efb4c05e61b8730f69564b19adfd~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ee51a08b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=t7KnqurnsZA7eqBJR4gLgPUlXqQ%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylorgrace4211",
        "privateAccount": false,
        "platformUserId": "94313109934194688",
        "secUid": "MS4wLjABAAAAK6a5MIhmtW7BMvjnwJt_lQggOS0ftV3bp3WESsUe41cv8AJOshLYOFwWtokGQPq_",
        "metrics": {
          "followers": 122727,
          "following": 3,
          "likes": 5418519,
          "posts": 0
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor..222",
        "displayName": "taylor",
        "bio": "Instagram: tay.lor_512",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/44c0723c6d1b0791cb645b4c7bada945~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=8c09323c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Q%2BBKdMItjn%2BriNZTKzmGhHer25g%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor..222",
        "privateAccount": false,
        "platformUserId": "220826586281979904",
        "secUid": "MS4wLjABAAAAnibD8R2TzHyUf326L8a3zB_o1YIWkU02wiUuHQzhPQ0HUnBmU_VBw7qvVs4E_zTv",
        "metrics": {
          "followers": 2916,
          "following": 2988,
          "likes": 4503,
          "posts": 4
        }
      },
      {
        "platform": "tiktok",
        "handle": "taayyylorrr._",
        "displayName": "taylor ☆",
        "bio": "taylor ☆",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6fea94d53888d0fa7a42d1c220ed249b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=c9c1f2f3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=cPuYr7Nev5PRJQdZkRG7siW5sM0%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taayyylorrr._",
        "privateAccount": false,
        "platformUserId": "6805595470682752006",
        "secUid": "MS4wLjABAAAAIVMkVzvSZt0aVyKa--2j3PGrF21B2ynyMjie1eOIP7Nvl2gbb9F-7uEBFd4wPXps",
        "metrics": {
          "followers": 2913,
          "following": 78,
          "likes": 17149,
          "posts": 12
        }
      },
      {
        "platform": "tiktok",
        "handle": "fuck_cheaters101",
        "displayName": "Taylor😽🤍",
        "bio": "Taylor😽🤍",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/5715a227c7fbccd52aa9b86a63b3335c~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=5f529e98&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=SC8czdOXqOiOCL2BRUkDsAbtfAI%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@fuck_cheaters101",
        "privateAccount": false,
        "platformUserId": "6935669539687367686",
        "secUid": "MS4wLjABAAAAQV_3-v0SHayo8POFMmEYxjwACPJ-jPv-vY0NKZWSH_C-PQ4MuhC7kKx-sQlxfUCu",
        "metrics": {
          "followers": 126,
          "following": 59,
          "likes": 3218,
          "posts": 14
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor.taylorr",
        "displayName": "Tay",
        "bio": "Tay",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/9e03fb5284e72529d3c528d41b988a4d~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=cf7703e6&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=OVvlUhKDXCyFz5aFHBVrojYAe%2Bs%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor.taylorr",
        "privateAccount": false,
        "platformUserId": "6648955071025528838",
        "secUid": "MS4wLjABAAAAI62DdAMVTCNGNMN380izA3L8GeN0c3_MLfynCEbquoMNPPuRd5Kb4h7AyYW-2eRj",
        "metrics": {
          "followers": 2764,
          "following": 618,
          "likes": 9963,
          "posts": 42
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor_20032",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/ff14cd688108747485ed7f8cfc9d382f~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=e545b210&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Cm6BWZNJg%2B0JSg4AzbG3CyxNfpg%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor_20032",
        "privateAccount": false,
        "platformUserId": "6808535145642935302",
        "secUid": "MS4wLjABAAAAL34uTDFe9FbI79k8CN9kQwq4hpntcn-RY7AY6TsrwbT3JQQG0rfW0_tDo6D0LZge",
        "metrics": {
          "followers": 399,
          "following": 185,
          "likes": 2246,
          "posts": 2
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor_nuttall",
        "displayName": "𝓣𝓐𝓨𝓛𝓞𝓡",
        "bio": "𝓣𝓐𝓨𝓛𝓞𝓡",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/f9573e565443262633713a5772dc7836~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=24562cb4&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=8nMPsmAbjwoQCG1xbggISaqdjg8%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor_nuttall",
        "privateAccount": false,
        "platformUserId": "7536431548372059154",
        "secUid": "MS4wLjABAAAAKnLq0i-PaQUXCYgA7tcVyzmS1au-TQWqSmkVkKRiXlMcoBOOqtPpAq1K3xuq7-Hs",
        "metrics": {
          "followers": 516,
          "following": 464,
          "likes": 2008,
          "posts": 1
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor__pubgm",
        "displayName": "𝙏𝘼𝙔𝙇𝙊𝙍",
        "bio": "𝙏𝘼𝙔𝙇𝙊𝙍",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/78782a8199d71ab833667913241a407b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=818a4196&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=4po8R7%2F%2FbGDAPrOH3yFIylEkjGo%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor__pubgm",
        "privateAccount": false,
        "platformUserId": "7273924693932622854",
        "secUid": "MS4wLjABAAAAtyg9Ep3JS5Xt4sJxOYxMX-wtU8QxsdbTA60jLCaK54Z0UtCXESoH_U9ZhWI7BrJ-",
        "metrics": {
          "followers": 568,
          "following": 81,
          "likes": 3898,
          "posts": 14
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylortaylortaylor_",
        "displayName": "Taylor Richardson",
        "bio": "Taylor Richardson",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/a3f876a25a29b1a3d09b72f93d2c48f9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=00444423&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=oPOEa0o0crXN8bhXV5RuYdAeSik%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylortaylortaylor_",
        "privateAccount": false,
        "platformUserId": "6813224627788874758",
        "secUid": "MS4wLjABAAAALXcWSmiHCUiHCuZOZ26cTmhX02yQKC34h2avr7DaLkpwaqCPiTO7Bk6H3SdaA5V9",
        "metrics": {
          "followers": 300,
          "following": 9998,
          "likes": 131,
          "posts": 1
        }
      },
      {
        "platform": "tiktok",
        "handle": "emanuelcabral18",
        "displayName": "TäylÖr 265🥷🏻",
        "bio": "TäylÖr 265🥷🏻",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/e1cf88e6cabc1d7cd5d069d26fdc3499~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=c812e0ab&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=9hNZeiUxNR1G9WJmnR32vw7cYZ8%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@emanuelcabral18",
        "privateAccount": false,
        "platformUserId": "7051351234797011973",
        "secUid": "MS4wLjABAAAA49yjABZDOC_MUdLbBHRHJY2_ekNCBJz27ALZmRf7OIEK9ZU5d1qgzN7J7i3vuW5C",
        "metrics": {
          "followers": 5890,
          "following": 4972,
          "likes": 11681,
          "posts": 97
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylorhernandez00",
        "displayName": "taylor",
        "bio": "taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/21942322a5d2d1017df2d477f3e49e60~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=bd788302&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=eu0BVcNWRPbMS7lhkjtw1I%2BI%2BvA%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylorhernandez00",
        "privateAccount": false,
        "platformUserId": "6758287338063610885",
        "secUid": "MS4wLjABAAAATHtYkuhEaPx3ufXE6a2mvqFVwn5E9fAGznv1s1LmO4obnDWIwGgcrlnIxgLnNgLN",
        "metrics": {
          "followers": 1739,
          "following": 194,
          "likes": 7808,
          "posts": 42
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor.spam08",
        "displayName": "Taylor spam",
        "bio": "Taylor spam",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/18b46072435fc99c7c46b9101bec4695~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=756866d1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=g5LHD%2FXRo914QM2qyeu12l7USSs%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor.spam08",
        "privateAccount": false,
        "platformUserId": "7421952052300923950",
        "secUid": "MS4wLjABAAAAlxbGGFRnn6gdAIyxosqe-gW3ceURsWRLu3NRuVF1GSXoUalMoMJESB89NWG4sfT9",
        "metrics": {
          "followers": 107,
          "following": 181,
          "likes": 1727,
          "posts": 33
        }
      },
      {
        "platform": "tiktok",
        "handle": "xo._taylorrrr",
        "displayName": "Taylor Blanco",
        "bio": "Taylor Blanco",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/87653157c57f6b6dd2f25fc03ef95954~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=1fdb5d4f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=fx%2F8wpUNjxEBqS0gRhvGC4PSo8A%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@xo._taylorrrr",
        "privateAccount": false,
        "platformUserId": "7566293348622664718",
        "secUid": "MS4wLjABAAAAqClYN3E8VJs7Fnr3wAsHs4VoWln3maQ2Ke6R3tnnC-Cva_zPiLsMbZBzuLJTAD-e",
        "metrics": {
          "followers": 513,
          "following": 269,
          "likes": 1658,
          "posts": 8
        }
      },
      {
        "platform": "tiktok",
        "handle": "tayylor.ugc",
        "displayName": "Tayylor",
        "bio": "Tayylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/78eb3c8ac61ce4a6a3f14bed54a970cc~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=8d18e9fc&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=A5jE%2BvMrUBPZ%2FvC%2BQYBP7JGBgZg%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@tayylor.ugc",
        "privateAccount": false,
        "platformUserId": "7311249821284828203",
        "secUid": "MS4wLjABAAAARifpNAbmPGCjggs_2ZtAK-42CzubKbIvCHCXYlWFzoDFFoXq8_q_JtjBNflcb2kq",
        "metrics": {
          "followers": 8817,
          "following": 3577,
          "likes": 2839,
          "posts": 19
        }
      },
      {
        "platform": "tiktok",
        "handle": "housewifeswag",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/4103c915de93439f6673163d0f915516~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=50de0a52&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Ccp9SieH0kMJBPBPoi5teBQ7s3Y%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@housewifeswag",
        "privateAccount": false,
        "platformUserId": "6764192066961671174",
        "secUid": "MS4wLjABAAAA4OALINhvwrw3j9s7wxtcHf1ZrfxkT97S6Kf717yIuEnq8fuGsF0PFCNzKWLMPSSx",
        "metrics": {
          "followers": 120061,
          "following": 1301,
          "likes": 455939,
          "posts": 151
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor.elsey.05",
        "displayName": "Taylor Rae",
        "bio": "Taylor Rae",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/2dae4fa4ba74f307255a672b402cf604~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=af907326&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=rggL5jL9zVAd%2FXuvO8b5dK4s3q0%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor.elsey.05",
        "privateAccount": false,
        "platformUserId": "6734281884953494534",
        "secUid": "MS4wLjABAAAAN-rHKwYpRDumf2wXQ0An2d-mnFPhHIxxdiiW4WsSNAV4r83IMY1bcOnwAdKmYMsG",
        "metrics": {
          "followers": 464,
          "following": 308,
          "likes": 2998,
          "posts": 11
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor_112702",
        "displayName": "Taylor🦋",
        "bio": "Taylor🦋",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6b68e3782212e865c22d1e8aede37663~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=47d176cc&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=u4m5ZaKy7U7mJdU3GnVuLBGoKYU%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor_112702",
        "privateAccount": true,
        "platformUserId": "79162115772571648",
        "secUid": "MS4wLjABAAAAUmUc9BVTHwqOBWrZApo97DNZh8O6gvSOJHY9fWI9hrYv8dDwlylzTUnofWTEVrl2",
        "metrics": {
          "followers": 579,
          "following": 9247,
          "likes": 1577,
          "posts": 0
        }
      },
      {
        "platform": "tiktok",
        "handle": "uuuuty123",
        "displayName": "Bubbly Rush🍾️🍾️",
        "bio": "Bubbly Rush🍾️🍾️",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/dee468e4d22dfbd10cef6901575d24c1~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=15faa753&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=izBArkMRljXxxRUopew7THAWgGU%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@uuuuty123",
        "privateAccount": false,
        "platformUserId": "7420475556426155054",
        "secUid": "MS4wLjABAAAAihBgj7Zsv1WJ37RCgX50LX2G6QieuwiopOQ1D55vDojcCheFoovR2CKS37oCwhzR",
        "metrics": {
          "followers": 11057,
          "following": 106,
          "likes": 9291,
          "posts": 82
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylor.prvt15",
        "displayName": "𝒯𝒶𝓎𝓁𝑜𝓇. 𝑜𝒻𝒻𝒾𝒸𝒾𝒶𝓁",
        "bio": "𝒯𝒶𝓎𝓁𝑜𝓇. 𝑜𝒻𝒻𝒾𝒸𝒾𝒶𝓁",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/87251bdc976d8d13eb25e7e8493ef9e6~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=b7399497&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=TiV67sUfhiiDkqLsltqDNpJTZyU%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylor.prvt15",
        "privateAccount": false,
        "platformUserId": "7323678009524831264",
        "secUid": "MS4wLjABAAAAQXjcFerkLvQ86E4BWffLMho7bcZFbj9HFrqlsM-B-O-5TDviSpvUEMlJQlw8GRK1",
        "metrics": {
          "followers": 390,
          "following": 14,
          "likes": 42527,
          "posts": 4
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylorfamilyclippage",
        "displayName": "Taylorfamilyclippage",
        "bio": "Taylorfamilyclippage",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/0d62c7e0efc990309d13248fce255a76~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=2a6db911&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=f4jm%2FucsjWxIr7NbdP5JAzeYS8A%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylorfamilyclippage",
        "privateAccount": false,
        "platformUserId": "5627216",
        "secUid": "MS4wLjABAAAAwi9cWGrcne-iiY35a5hZINUph01131meZh6NYKFWL7I",
        "metrics": {
          "followers": 87,
          "following": 194,
          "likes": 3193,
          "posts": 20
        }
      },
      {
        "platform": "tiktok",
        "handle": "dripclips3",
        "displayName": "Dripclips",
        "bio": "Dripclips",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/55b1690a3318a5dc582a916fa69d4bbf~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ddbe279f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=LfYqPz1M92sVokYeXziByN0WGKg%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@dripclips3",
        "privateAccount": false,
        "platformUserId": "7608699477722448910",
        "secUid": "MS4wLjABAAAAPkyMZ0rbPRoTVhDGFp4ABq0nbfqO8uJ-zbgvyxVf5BLtR0KJhRW6R0asQugPaqjK",
        "metrics": {
          "followers": 657,
          "following": 81,
          "likes": 149204,
          "posts": 127
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylortaylor121",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/2b09fbe4165831a1b1bd4f2d37d6415e~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=c5361bd3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=BVVHWIrwBSzxmBdBL8cC4r7Abpk%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylortaylor121",
        "privateAccount": false,
        "platformUserId": "7460358916666410026",
        "secUid": "MS4wLjABAAAAliHqksxOFI_uPEW8WarkSWLp4BnEuw1RlHQe02y1MnvFhRAz1hOjS_E6pe_08gWC",
        "metrics": {
          "followers": 233,
          "following": 203,
          "likes": 1416,
          "posts": 1
        }
      },
      {
        "platform": "tiktok",
        "handle": "tayyyleigh1",
        "displayName": "taylor",
        "bio": "taylor",
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/c6c9b5ee32cb9efc9414a2f9508334e6~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ca3b1b9f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=51s49HVbVAxVoO0QlgCxBDGoeNk%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@tayyyleigh1",
        "privateAccount": true,
        "platformUserId": "7499548372006650922",
        "secUid": "MS4wLjABAAAAf2nOrLZR88PZGs7hVQGjs3aeWUw6nfBxHB_4Qpx3nnK6DL4hcGdjk5WEvbZv_6II",
        "metrics": {
          "followers": 49,
          "following": 599,
          "likes": 1058,
          "posts": 0
        }
      },
      {
        "platform": "tiktok",
        "handle": "taylormmadison",
        "displayName": "Taylor",
        "bio": "Taylor",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/d3f179c43bec82e5d84ce5ce37013c67~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=e0de1e15&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=tJ4t03%2FhC8kn%2F5Wp2MiKLJFf0sM%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@taylormmadison",
        "privateAccount": false,
        "platformUserId": "7493919128156701738",
        "secUid": "MS4wLjABAAAAmqmIVwQ8ZbygJucYdE0qcT1zDOgdnK-KZC5a_iq-Q2iqwKJQDDwMgb1MxB5-F6m0",
        "metrics": {
          "followers": 96256,
          "following": 10,
          "likes": 2844322,
          "posts": 7
        }
      }
    ],
    "totalUsers": 30,
    "page": {
      "nextCursor": "60",
      "hasMore": true
    }
  },
  "meta": {
    "requestId": "playground-example",
    "creditsCharged": 1,
    "version": "v1"
  }
}
```

### Example JSON (sparse)

```json
{
  "data": {
    "query": "x",
    "users": [
      {
        "platform": "tiktok",
        "handle": "j63__",
        "displayName": "𝐗",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/03c2119a8f5d8059565a2980b89a98d4~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=d3958734&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=fXtFg6%2BKUpVrK7p9%2BQ0A2s8csmk%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@j63__",
        "platformUserId": "6709420434797265926",
        "secUid": "MS4wLjABAAAAq8M3UIw1fOTqZG-KA805VgeIyrUZLxaS-oA2wU1YcBLGSn5xBZ199FfFsiQ5mecn",
        "metrics": {
          "followers": 106304,
          "following": 18,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "alusavrdhl9",
        "displayName": "xXx",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/c6dc46c86d8ad49e7981e4ac0f264751~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ad562492&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=cFiJUgI7Ih6qxMFadLLL1a0CgM0%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@alusavrdhl9",
        "platformUserId": "7610735888997663758",
        "secUid": "MS4wLjABAAAAS8SiSjm7Dyqq53Z6HGj--lyjXbVaF6s1Ql-4PIAeXrqB80bzqx1lGZuUOp-7UISP",
        "metrics": {
          "followers": 123046,
          "following": 1,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "dameliosrye",
        "displayName": "x",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/640bc35df9163f381b82f621dcd49576~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=4120cb6a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=9J6BsWPEhBeeEPZL8J3SZsdZFvo%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@dameliosrye",
        "platformUserId": "6844759448411440134",
        "secUid": "MS4wLjABAAAA3aBinhwAJCAbWEW4VtULkL_Xfcwv85rD61ZQAsgdF9eXEEPa4INaIDGl5y7_IK0V",
        "metrics": {
          "followers": 191346,
          "following": 38,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "x_dg14",
        "displayName": "X",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/17d25b3f193e87b7460d16e14e35c3d5~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=6362e124&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=f3mrdyEE%2FSKESiit9CbPy9cfq4o%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@x_dg14",
        "platformUserId": "6805617589810725893",
        "secUid": "MS4wLjABAAAADEHWNpg4-jsbUsGIMq4xfGY6BHyowQ47zg4qxlfPOy_ofSgDgxmF2-6hqJ1fra69",
        "metrics": {
          "followers": 116526,
          "following": 48,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "_xis.s",
        "displayName": "X",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/0d117dbd3b375548d58ef9da7d20780b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ee775f49&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=l4cYb%2FhpnEia57SlEN7cT7YrmLg%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@_xis.s",
        "platformUserId": "7291464936097530912",
        "secUid": "MS4wLjABAAAAT_cCqH2jDIZt1woLO58w0DzsbZ6G3ikUSqRDLvI6t-u7UoEj0_CfWesthiQyZN9q",
        "metrics": {
          "followers": 147154,
          "following": 0,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "xxl_studios",
        "displayName": "XXL STUDIOS | MURALIST 🖤🇨🇦",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/22c6be324750faa235dc918804a4c80a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=d02164a7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=HPEg6yej8NZu090a5m5sAWENfuY%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@xxl_studios",
        "platformUserId": "6837228622421050374",
        "secUid": "MS4wLjABAAAAKIgoS7WXvlBEgobP2YVRkASdxHALQpUzFx6X3NdBuJ3FGO8nYx8KbB8DuMCxPBG9",
        "metrics": {
          "followers": 667280,
          "following": 583,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "xsnap.hacksx2",
        "displayName": "3 owners🥰",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/1a91cf1fefc31c80d9fc59a085c1815f~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=b992c7ca&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=ET78Dq6K8vNYh23GnvlZU8vdW5s%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@xsnap.hacksx2",
        "platformUserId": "6925272599468491781",
        "secUid": "MS4wLjABAAAAk6VA9E9c9zb6IhvYZol_Qnyxzq9q95bcFel4BkSoTsZXJ2ilFQnYm87-YtnKt_w1",
        "metrics": {
          "followers": 124205,
          "following": 6,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "da_dxxd",
        "displayName": "X",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/e7378d4760a9d46e1e5659386be203a2~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=d377961a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=n0k%2FPM9q1TGOQDHnQ1d0DVAJ5iw%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@da_dxxd",
        "platformUserId": "6610154187588550661",
        "secUid": "MS4wLjABAAAA84aMX-RZDaYLS9TxUYusoIwkuykx4R7YSdHi3_42hFZT3AcfgzPoKk40ZeOLmJv_",
        "metrics": {
          "followers": 221033,
          "following": 2,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "x_10000_x",
        "displayName": "X",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/27dce5da2a8441e8dc3ae9cb2d113682~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=e82090c6&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=G1Y2DelXvX7VGIbfQmGkUf3Q%2B40%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@x_10000_x",
        "platformUserId": "7430732770374747169",
        "secUid": "MS4wLjABAAAAkw4rVgJpAHaTY2oFlGcWFGhHlWWB4riTnKy5C5in1EgMlrNpRFL5PSgaoKO8iOpj",
        "metrics": {
          "followers": 162242,
          "following": 110,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "x1m.xk",
        "displayName": "𝓧",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/72d0fc46c18b4e25329ac25c0b626f5f~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=798dffd2&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=JwjbOvmkywkUtYvRYUAKW%2FAt2o8%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@x1m.xk",
        "platformUserId": "7028424255478367237",
        "secUid": "MS4wLjABAAAAKPsMk8F6uhKhJuV0vXX-ffD8jOozZYhWDLfAH2R2r0er0eAm1C31pjn92xtO3b-Q",
        "metrics": {
          "followers": 392885,
          "following": 11,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "x.video237",
        "displayName": "X video",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/41af143c6ed182ad73cbb234578433d4~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=560ea333&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=tK3vnE5Kw1oyJN8rY7jDLA9%2Fydo%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@x.video237",
        "platformUserId": "7619234930850366477",
        "secUid": "MS4wLjABAAAAPTUr5bj-UnDzhVyAKFyxGmPW4e0eeFCfoTpsMWlcsiST7Se43jfN9FQ0VWOaFIao",
        "metrics": {
          "followers": 810959,
          "following": 80,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "xnxxoffcial",
        "displayName": "XNXX",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/ccf65d5ba636f9e6ed3c09305c65ec2a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=0600f158&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Q324bUMfQ%2FiYU2z1oioespihLXs%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@xnxxoffcial",
        "platformUserId": "7353488541018489862",
        "secUid": "MS4wLjABAAAA2iiQmiXOYiMd59CMzcbkLvhlrZCMrjbKbfk1ievQz9BYltI17RV-tnvxG_vN4Zds",
        "metrics": {
          "followers": 251,
          "following": 442,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "xfinds",
        "displayName": "X-Finds",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/ab89e918e4dbb4346b79cbfccdf6475c~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=64515b11&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=gNwIRIEvJDj30kh3srMG9Y%2BSCQU%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@xfinds",
        "platformUserId": "6766595529956983813",
        "secUid": "MS4wLjABAAAACchO5gHp7rSBZy01BKo77tbMpQPr-OIVo_TKoki7Uqzzvr6Zxowm4CKfK_1K8Pdh",
        "metrics": {
          "followers": 15888427,
          "following": 1,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "shinxenoo",
        "displayName": "x",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/64671564209fd83249099f29cfb51f8d~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=52e21908&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=ZEAaR9iTrz1trFEc%2F6CIBz7DCGk%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@shinxenoo",
        "platformUserId": "7458230980176839687",
        "secUid": "MS4wLjABAAAArx0YrjcGOA1t62i7Qp0FvNknY-IU6a-nVbD82oTw4nJQ4z1JV24VaXtaEdp6ckWr",
        "metrics": {
          "followers": 120328,
          "following": 10,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "kdreemz2.0",
        "displayName": "Dreemz",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/c7680fe476feae522cdb7fefe47ef89d~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ae299f1b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=oRCWI8jLb8ubxfAJzxYZUOcMkv8%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@kdreemz2.0",
        "platformUserId": "7195340060211430443",
        "secUid": "MS4wLjABAAAArhK9O8n6NlyJeubM_rRvyOdmtBGq-1EPfy_IU_uNl2o195ndyIvP3y1X1lg5Aaw8",
        "metrics": {
          "followers": 633825,
          "following": 693,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": ".ximenapadilla",
        "displayName": "X",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/45a222aa3c288b4c386fb8bd1d69daf9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=a9c99f37&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=HLcfjXS%2F83FspQWxe4eX9P9w9ZE%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@.ximenapadilla",
        "platformUserId": "6805034827176821765",
        "secUid": "MS4wLjABAAAA5OIEG0VoAH-1AEBjmxQuFs93zTYnIJQgul9Tix8TWNtaOqG3wItQZR8mzbkQcrHp",
        "metrics": {
          "followers": 176391,
          "following": 3,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "milenajeje",
        "displayName": "Milenax❤️",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/a6a93cfdcf90284d7db210d457e90c53~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=18c183c9&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=ca6lPlbJuxeI5B04cdi8ts83xyA%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@milenajeje",
        "platformUserId": "18010390",
        "secUid": "MS4wLjABAAAAJt0c8rOLW6v55WJ3AeP4SlH2iQ0zndtGuMPIl7SUEeM",
        "metrics": {
          "followers": 4415036,
          "following": 115,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "xxxx1234450",
        "displayName": "X",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/d073305141faaa554aaee72aee9cb04a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=41ad144c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=gtSfokXbZDH%2FaSvrS6mudC8Woys%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@xxxx1234450",
        "platformUserId": "6660060056811470854",
        "secUid": "MS4wLjABAAAAKErRpoPiARWOtLBBtSuBgHmNVz4m5qtA7VMPPyokA0BU26ndFNiLTSWgHOcFbpkU",
        "metrics": {
          "followers": 126716,
          "following": 17,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "xav1ah",
        "displayName": "X",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1a7f8ef5380b639b5d21b5f0ea1e12f5~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=c7c6507b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=GUPo1UIMAvod6tBiE7MxNS9JBdE%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@xav1ah",
        "platformUserId": "6999914744863081474",
        "secUid": "MS4wLjABAAAA_hqvKR6koGBnRfOG3UinD-gcw_n5E4NXuLSvn37q-xATf6tgJCSdf5Mbx_OYBdXn",
        "metrics": {
          "followers": 277593,
          "following": 1158,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "chemicee",
        "displayName": "x",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/cd48466026b689c3e5eaf85b57166857~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=cf4ac240&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=K3Fz5ZdrJyxkQQYNBJDHg0RRyPY%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@chemicee",
        "platformUserId": "6753432417979892742",
        "secUid": "MS4wLjABAAAARYkJQWyINfKfvDNDPPF9pZvltVGTSd2vNrGy_WtGSZoEJ6orNNNvSpDd_2xD-DVW",
        "metrics": {
          "followers": 301489,
          "following": 880,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "x1omarasfinest",
        "displayName": "x",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/813498564a3259df35227232d961eabd~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=6ca38b9c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=lcYs9OXH4eOHFUMjEdP71OFVrYw%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@x1omarasfinest",
        "platformUserId": "7403907855962113066",
        "secUid": "MS4wLjABAAAAMFiVB9vAv3OTpSIVWxACnS7FGATKlz9L_LkG-1kbj4ZaizO-NoFbX0VySML30ee3",
        "metrics": {
          "followers": 964,
          "following": 37,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "ita_anson",
        "displayName": "x",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/86481aecada1df8478676f25026e5c30~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=2961471f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=KqE%2Bu9KVj4CNBO0CjZWoSFG362o%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@ita_anson",
        "platformUserId": "6859718200767529990",
        "secUid": "MS4wLjABAAAADnWTR-v9jlS-af1lHAeaiyz_om-FVN38bAZ7rjFr4dJB5CxmqskhT8iCg8GqJn7-",
        "metrics": {
          "followers": 140980,
          "following": 275,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "_x0.mm_",
        "displayName": "Sexc blue 💋",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/b7e2b6732e7fbea9e20d0f8a20b0c398~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=297b6ae0&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Pft0lYqIX7D7x%2BmYfeujQ2hrEtc%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@_x0.mm_",
        "platformUserId": "7021662089916695557",
        "secUid": "MS4wLjABAAAAEO2Ix_R40dTbPEn9lB_eSANKxlcQOe0WXk75HHPN5BP8WZAvb8_-yZS7tZOjZ0U3",
        "metrics": {
          "followers": 738,
          "following": 434,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "xy122333",
        "displayName": "𝓧~",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/00a11792451a6f04b26d293c4ebb4e88~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=9fa41100&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=DL5nN9nOsjazlottXDxrY97%2BTW4%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@xy122333",
        "platformUserId": "7085257259433313306",
        "secUid": "MS4wLjABAAAA6OaSOgecUunMsYe9QIGLElouKJgNWNMfrTZZgoORSe4SYRw6l9EtaowTKiH3PQ01",
        "metrics": {
          "followers": 833700,
          "following": 153,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "_c_._._x_",
        "displayName": "岑",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/f977c206259a0af7a8a272951864db1e~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=36cdd99c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=10BkiGwjeMuA8s86n%2FVd1oVTT9M%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@_c_._._x_",
        "platformUserId": "6635522957513736194",
        "secUid": "MS4wLjABAAAAry31W1tEJ4sX7E07j4XIpXKgvpx0aUsn-F9eHlC27QkZbwNy8m_dmEkIiKocrMbN",
        "metrics": {
          "followers": 2563,
          "following": 37,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "emmajolee12",
        "displayName": "x",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/99b8ec5d1bce72278e176adc793f3fc2~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=861f0825&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=4Rapo2ASgiFR9Ai3N9JwyWvqbrY%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@emmajolee12",
        "platformUserId": "6879066921988883457",
        "secUid": "MS4wLjABAAAA3HAOGUuGkVPP3KfjslP0Ttzqmfh6RzEhHbsUJW9r-va5lRnIPeVbfUQIdrEc4_uj",
        "metrics": {
          "followers": 130629,
          "following": 350,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "xsquad.1",
        "displayName": "XSQUAD",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/7d149125651e17341e1dcf2145b11631~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=a856aadb&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=MwSOhJVGDZzUt75X9SbpeUHzJEg%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@xsquad.1",
        "platformUserId": "6787077140766917638",
        "secUid": "MS4wLjABAAAAGiWAqBPFnaypxM9mAfqFSaWkT2FswR9OBmv0whDLyiYuth_a2WvE97jeY899GJ2p",
        "metrics": {
          "followers": 721584,
          "following": 510,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "xsquad.2",
        "displayName": "X.SQUAD",
        "bio": null,
        "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/4a6ee6785f1e034d4c705580b36d8b75~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=0f4c1621&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=pEV7G%2BuPqeqEEC24ShwJjBu%2BzbA%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@xsquad.2",
        "platformUserId": "6961475257958450181",
        "secUid": "MS4wLjABAAAAqrkhV0oNv96lo9xFbUecXKMTMktbUYfzykqG-iQpcksfvVFWnQVE1Mkl2dMYEk05",
        "metrics": {
          "followers": 314550,
          "following": 171,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "sorrouhk",
        "displayName": "x",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/7d252335420a3eb373219117325613a2~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=1657e4c9&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=WIOfXRZ641szfqBE3mDisA1g%2BE0%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@sorrouhk",
        "platformUserId": "7126636971154064390",
        "secUid": "MS4wLjABAAAAiQP-Gtn1vmRlb0KsHHSSNB7sWj6CBzopMoA3TQSbhKeFRzEgykjeKcZ-EyPfNnox",
        "metrics": {
          "followers": 853356,
          "following": 0,
          "likes": null,
          "posts": null
        }
      },
      {
        "platform": "tiktok",
        "handle": "viral00.4",
        "displayName": "X",
        "bio": null,
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/f7e98e21d11366fbc2b12bf5a6e07d6f~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=cfaa5d79&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=70KxhPrP0sgD%2FmEzr3mvQoB1yC8%3D",
        "verified": false,
        "profileUrl": "https://www.tiktok.com/@viral00.4",
        "platformUserId": "7383054134364472352",
        "secUid": "MS4wLjABAAAA0ULhZCU-ka3eU-1hRadJwqIM9tG39NM95pkvspt-jojMQ8JC94EUD8BOGzPN-NWK",
        "metrics": {
          "followers": 210337,
          "following": 2605,
          "likes": null,
          "posts": null
        }
      }
    ],
    "totalUsers": 30,
    "page": {
      "nextCursor": "30",
      "hasMore": true
    }
  },
  "meta": {
    "requestId": "playground-example",
    "creditsCharged": 1,
    "version": "v1"
  }
}
```

### Machine-readable error codes

When an error JSON body is returned, it may include one of these `error.code` values (derived from the OpenAPI schemas for this operation; additional codes may exist at runtime):

- `bad_request`

## Error handling & retries

Interpret HTTP status codes using the descriptions below. Do not assume a JSON body unless the OpenAPI schema defines one for that status.

- **400**: Invalid query parameters **Retry:** Fix the request; retrying the same invalid payload will not help.
- **401**: Missing or invalid API key **Retry:** Fix the API key first; retrying without changes will not help.
- **402**: Insufficient credits **Retry:** Do not retry without resolving billing/credits (retrying the same request will not help).
- **500**: Unexpected or billing error
- **502**: Lookup could not be completed from the response (unexpected or invalid data). **Retry:** May be transient; a few retries with backoff are reasonable.
- **503**: Service temporarily unavailable; safe to retry with backoff. **Retry:** Usually safe to retry with exponential backoff and jitter.

### Suggested client defaults

- Send the API key using the `x-api-key` header on every request.
- On `503` (and sometimes `502`), retry with backoff; cap retries and surface a clear error to the user.
- On `402`, surface an actionable billing message rather than blind retries.

## Examples

### TypeScript SDK

```typescript
import { SocialFetchClient } from "@socialfetch/sdk";

const client = new SocialFetchClient({
  apiKey: process.env.SOCIALFETCH_API_KEY!,
});

const result = await client.tiktok.searchUsers({
  query: "mrbeast",
});

if (!result.ok) {
  console.error(result.error);
} else {
  console.log(result.value.data);
}
```

### Node.js

```javascript
const response = await fetch(
  "https://api.socialfetch.dev/v1/tiktok/users/search?query=mrbeast",
  {
    headers: {
      "x-api-key": "YOUR_API_KEY",
    }
  }
);

const data = await response.json();
console.log(data);
```

### cURL

```bash
curl "https://api.socialfetch.dev/v1/tiktok/users/search?query=mrbeast" \
  -H "x-api-key: YOUR_API_KEY"
```

### Python

```python
import requests

response = requests.get(
    "https://api.socialfetch.dev/v1/tiktok/users/search?query=mrbeast",
    headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()
print(data)
```

### Example: next page (pagination)

After a successful response, if pagination is not finished, request the next page using `cursor` (URL-encode when composing the query string):

```javascript
const previous = await response.json();
const nextCursor = previous?.data?.page?.nextCursor;
const hasMore = previous?.data?.page?.hasMore;
if (!hasMore || nextCursor == null) {
  // no more pages
} else {
  const nextUrl = new URL("https://api.socialfetch.dev/v1/tiktok/users/search");
  nextUrl.searchParams.set("cursor", nextCursor);
  // optionally preserve sort: nextUrl.searchParams.set("sortBy", "latest");
  const nextResponse = await fetch(nextUrl.toString(), {
    headers: { "x-api-key": "YOUR_API_KEY" },
  });
  const nextData = await nextResponse.json();
}
```