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

# TopYappers API

> Welcome to the home of the TopYappers API

## Introduction

The TopYappers API is a RESTful API that allows you to access the TopYappers platform and its data.

## Getting Started

Get an API key from the TopYappers platform - [https://www.topyappers.com/profile](https://www.topyappers.com/profile)

For full documentation:

[Creators API](https://docs.topyappers.com/creators-api/endpoint/get) Endpoint Examples

[Videos API](https://docs.topyappers.com/videos-api/endpoint/get) Endpoint Examples

[Viral Content API](https://docs.topyappers.com/viral-content-api/endpoint/post) Endpoint Examples

## Quick Start

### Fetch creators

```bash theme={null}
curl -X GET "https://api.topyappers.com/api/v1/creators?mainCategory=technology&followersMin=10000" \\
  -H "x-ty-api-key: YOUR_API_KEY" \\
  -H "Content-Type: application/json"
```

### Fetch videos

```bash theme={null}
curl -X GET "https://api.topyappers.com/api/v1/videos?user_followers_min=10000" \\
  -H "x-ty-api-key: YOUR_API_KEY" \\
  -H "Content-Type: application/json"
```
