Get profile socials
curl --request GET \
--url https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socialsimport requests
url = "https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials', 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://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials")
.asString();require 'uri'
require 'net/http'
url = URI("https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"payload": [
{
"id": "UC1234567890",
"name": "streamer123",
"platform_id": "youtube",
"followers": 85000
},
{
"id": "17841400000000000",
"name": "streamer123",
"platform_id": "instagram",
"followers": 42000
},
{
"id": "7123456789012345678",
"name": "streamer123",
"platform_id": "tiktok",
"followers": 96000
},
{
"id": "3165311079",
"name": "streamer123",
"platform_id": "twitter",
"followers": 31000
}
],
"meta": {
"received_at": "2025-01-27T12:00:00.000Z"
}
}{
"error": {
"status": 400,
"message": "Invalid platform or missing required parameter"
},
"meta": {
"request_id": "5e7c0137-1ed3-4b4b-8e5f-3d9cf00f7ac4"
}
}{
"error": {
"status": 401,
"message": "API key is required"
},
"meta": {
"request_id": "5e7c0137-1ed3-4b4b-8e5f-3d9cf00f7ac4"
}
}{
"error": {
"status": 403,
"message": "Invalid API key"
},
"meta": {
"request_id": "5e7c0137-1ed3-4b4b-8e5f-3d9cf00f7ac4"
}
}{
"error": {
"status": 404,
"message": "Profile not found"
},
"meta": {
"request_id": "5e7c0137-1ed3-4b4b-8e5f-3d9cf00f7ac4"
}
}{
"error": {
"status": 429,
"message": "Rate limit exceeded"
},
"meta": {
"request_id": "5e7c0137-1ed3-4b4b-8e5f-3d9cf00f7ac4"
}
}Advanced
Get profile socials
Fetch cross-platform social linking data that identifies when the same creator has profiles across multiple platforms (e.g., their Twitter, YouTube, and Twitch accounts belong to the same person).
Note: This endpoint consumes 10 quota units per request.
GET
/
platforms
/
{platform}
/
profiles
/
{profile_id}
/
socials
Get profile socials
curl --request GET \
--url https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socialsimport requests
url = "https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials', 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://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials")
.asString();require 'uri'
require 'net/http'
url = URI("https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/socials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"payload": [
{
"id": "UC1234567890",
"name": "streamer123",
"platform_id": "youtube",
"followers": 85000
},
{
"id": "17841400000000000",
"name": "streamer123",
"platform_id": "instagram",
"followers": 42000
},
{
"id": "7123456789012345678",
"name": "streamer123",
"platform_id": "tiktok",
"followers": 96000
},
{
"id": "3165311079",
"name": "streamer123",
"platform_id": "twitter",
"followers": 31000
}
],
"meta": {
"received_at": "2025-01-27T12:00:00.000Z"
}
}{
"error": {
"status": 400,
"message": "Invalid platform or missing required parameter"
},
"meta": {
"request_id": "5e7c0137-1ed3-4b4b-8e5f-3d9cf00f7ac4"
}
}{
"error": {
"status": 401,
"message": "API key is required"
},
"meta": {
"request_id": "5e7c0137-1ed3-4b4b-8e5f-3d9cf00f7ac4"
}
}{
"error": {
"status": 403,
"message": "Invalid API key"
},
"meta": {
"request_id": "5e7c0137-1ed3-4b4b-8e5f-3d9cf00f7ac4"
}
}{
"error": {
"status": 404,
"message": "Profile not found"
},
"meta": {
"request_id": "5e7c0137-1ed3-4b4b-8e5f-3d9cf00f7ac4"
}
}{
"error": {
"status": 429,
"message": "Rate limit exceeded"
},
"meta": {
"request_id": "5e7c0137-1ed3-4b4b-8e5f-3d9cf00f7ac4"
}
}Path Parameters
Platform identifier
Available options:
twitch, youtube, instagram, tiktok, twitter Example:
"twitch"
Platform-specific creator ID
Example:
"484563826"

