> ## Documentation Index
> Fetch the complete documentation index at: https://docs.full-tiktok-api.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Fetch a TikTok creator profile in under two minutes.

## Prerequisites

* A RapidAPI account with a TikTok Intel API subscription ([get one here](https://rapidapi.com/search/tiktok-intel))
* `curl`, Python 3, or Node.js 18+

## Step 1 — Copy your API key

Log in to RapidAPI, open the TikTok Intel API listing, and copy your key from the **Security** section of the playground.

## Step 2 — Fetch a creator profile

Replace `YOUR_API_KEY` with your key and run:

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET \
    "https://tiktok-marketing-intelligence-api-production.up.railway.app/api/v1/users/charlidamelio" \
    -H "x-rapidapi-key: YOUR_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  resp = requests.get(
      "https://tiktok-marketing-intelligence-api-production.up.railway.app/api/v1/users/charlidamelio",
      headers={"x-rapidapi-key": "YOUR_API_KEY"},
  )
  print(resp.json()["data"])
  ```

  ```javascript Node.js theme={null}
  const res = await fetch(
    "https://tiktok-marketing-intelligence-api-production.up.railway.app/api/v1/users/charlidamelio",
    { headers: { "x-rapidapi-key": "YOUR_API_KEY" } }
  );
  const { data } = await res.json();
  console.log(data);
  ```
</CodeGroup>

## Step 3 — Inspect the response

```json theme={null}
{
  "meta": {
    "request_id": "550e8400-e29b-41d4-a716-446655440000",
    "timestamp": "2025-04-29T12:00:00.000Z",
    "cached": false,
    "version": "2025-01"
  },
  "data": {
    "user_id": "6748798062814978049",
    "username": "charlidamelio",
    "nickname": "charli d'amelio",
    "bio": "🧡",
    "avatar_url": "https://p16-sign.tiktokcdn-us.com/...",
    "follower_count": 155800000,
    "following_count": 1246,
    "heart_count": 11500000000,
    "video_count": 2341,
    "verified": true,
    "region": "US"
  },
  "pagination": null,
  "error": null
}
```

## What's next

<CardGroup cols={2}>
  <Card title="Creator Intelligence" icon="brain" href="/api-reference/intelligence/creator">
    Get computed engagement scores and partnership signals for any creator.
  </Card>

  <Card title="User Posts" icon="film" href="/api-reference/users/posts">
    Paginate through a creator's recent video history.
  </Card>

  <Card title="Search" icon="magnifying-glass" href="/api-reference/search/general">
    Full-text search across videos, users, and live rooms.
  </Card>

  <Card title="Trending Sounds" icon="music" href="/api-reference/sounds/library">
    Browse the commercial sound library sorted by hottest.
  </Card>
</CardGroup>
