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

For full documentation:

Creators API Endpoint Examples

Videos API Endpoint Examples

Quick Start

Fetch creators

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

Fetch videos

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