Get creators by IDs
curl --request POST \
--url https://api.topyappers.com/api/v2/creators/get \
--header 'Content-Type: application/json' \
--header 'x-ty-api-key: <api-key>' \
--data '
{
"userIds": [
"<string>"
],
"user_ids": [
"<string>"
]
}
'import requests
url = "https://api.topyappers.com/api/v2/creators/get"
payload = {
"userIds": ["<string>"],
"user_ids": ["<string>"]
}
headers = {
"x-ty-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-ty-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({userIds: ['<string>'], user_ids: ['<string>']})
};
fetch('https://api.topyappers.com/api/v2/creators/get', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.topyappers.com/api/v2/creators/get",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'userIds' => [
'<string>'
],
'user_ids' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-ty-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.topyappers.com/api/v2/creators/get"
payload := strings.NewReader("{\n \"userIds\": [\n \"<string>\"\n ],\n \"user_ids\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-ty-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.topyappers.com/api/v2/creators/get")
.header("x-ty-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"userIds\": [\n \"<string>\"\n ],\n \"user_ids\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.topyappers.com/api/v2/creators/get")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-ty-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"userIds\": [\n \"<string>\"\n ],\n \"user_ids\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"message": "OK",
"requestedIds": [
"<string>"
],
"response": {
"data": [
{
"user_id": "UCECuDLnD9j3y901oNxJFerw",
"handle": "April Apple Tech",
"nickname": "April Apple Tech",
"bio": "Tech review and business content.",
"source": "youtube",
"email": null,
"categories": [
"Tech Reviews",
"Gadget Reviews",
"Smartphone Comparisons",
"Business Technology"
],
"followers": 2500,
"following": 0,
"total_videos": 296,
"total_likes": 0,
"avg_views": 35,
"avg_likes": 3,
"avg_comments": 1,
"engagement_rate": 0.11,
"main_website": null,
"websites": [],
"description": null,
"promoted_products": [
"DIHRAMS",
"iphone"
],
"best_promotion_niches": [
"Consumer Electronics",
"Mobile Devices",
"Tech Accessories",
"Online Retailers",
"Business Software"
],
"main_category": "Technology",
"country": "United Arab Emirates",
"date_created_timestamp": 1775636932.147,
"avatar_url": "https://images.0xw.app/avatars/creators/bd6493d02eaf43ad9740efa20ec08cd1.png",
"age": "10-19",
"gender": "male",
"account_type": "ugc",
"race": "black",
"hair_color": "white",
"body_complexion": "hulk",
"language": "english",
"hashtags": [
"iphone17",
"cinimaticvideo",
"iphoneair",
"shotoniphone"
],
"uploads_per_week": 0.39,
"uploads_per_month": 1.66,
"avg_video_duration_seconds": null,
"promotions_count": 2,
"affiliate_posts_count": 0,
"sponsorship_posts_count": 0
}
],
"page": 1,
"next_page": 0,
"total_pages": 1,
"total": 123,
"is_trial": true
}
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}Get Creators by ID (v2)
Fetch full creator profiles by passing userIds returned from the search endpoint.
POST
/
api
/
v2
/
creators
/
get
Get creators by IDs
curl --request POST \
--url https://api.topyappers.com/api/v2/creators/get \
--header 'Content-Type: application/json' \
--header 'x-ty-api-key: <api-key>' \
--data '
{
"userIds": [
"<string>"
],
"user_ids": [
"<string>"
]
}
'import requests
url = "https://api.topyappers.com/api/v2/creators/get"
payload = {
"userIds": ["<string>"],
"user_ids": ["<string>"]
}
headers = {
"x-ty-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-ty-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({userIds: ['<string>'], user_ids: ['<string>']})
};
fetch('https://api.topyappers.com/api/v2/creators/get', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.topyappers.com/api/v2/creators/get",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'userIds' => [
'<string>'
],
'user_ids' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-ty-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.topyappers.com/api/v2/creators/get"
payload := strings.NewReader("{\n \"userIds\": [\n \"<string>\"\n ],\n \"user_ids\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-ty-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.topyappers.com/api/v2/creators/get")
.header("x-ty-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"userIds\": [\n \"<string>\"\n ],\n \"user_ids\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.topyappers.com/api/v2/creators/get")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-ty-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"userIds\": [\n \"<string>\"\n ],\n \"user_ids\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"message": "OK",
"requestedIds": [
"<string>"
],
"response": {
"data": [
{
"user_id": "UCECuDLnD9j3y901oNxJFerw",
"handle": "April Apple Tech",
"nickname": "April Apple Tech",
"bio": "Tech review and business content.",
"source": "youtube",
"email": null,
"categories": [
"Tech Reviews",
"Gadget Reviews",
"Smartphone Comparisons",
"Business Technology"
],
"followers": 2500,
"following": 0,
"total_videos": 296,
"total_likes": 0,
"avg_views": 35,
"avg_likes": 3,
"avg_comments": 1,
"engagement_rate": 0.11,
"main_website": null,
"websites": [],
"description": null,
"promoted_products": [
"DIHRAMS",
"iphone"
],
"best_promotion_niches": [
"Consumer Electronics",
"Mobile Devices",
"Tech Accessories",
"Online Retailers",
"Business Software"
],
"main_category": "Technology",
"country": "United Arab Emirates",
"date_created_timestamp": 1775636932.147,
"avatar_url": "https://images.0xw.app/avatars/creators/bd6493d02eaf43ad9740efa20ec08cd1.png",
"age": "10-19",
"gender": "male",
"account_type": "ugc",
"race": "black",
"hair_color": "white",
"body_complexion": "hulk",
"language": "english",
"hashtags": [
"iphone17",
"cinimaticvideo",
"iphoneair",
"shotoniphone"
],
"uploads_per_week": 0.39,
"uploads_per_month": 1.66,
"avg_video_duration_seconds": null,
"promotions_count": 2,
"affiliate_posts_count": 0,
"sponsorship_posts_count": 0
}
],
"page": 1,
"next_page": 0,
"total_pages": 1,
"total": 123,
"is_trial": true
}
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}Authorizations
API key for TopYappers API authentication
Body
application/json
Response
Successful response from the public API (message, echoed requestedIds, and response containing paginated creator objects in snake_case).
⌘I
