Get profile analysis
curl --request GET \
--url https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysisimport requests
url = "https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysis"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysis', 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}/analysis",
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}/analysis"
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}/analysis")
.asString();require 'uri'
require 'net/http'
url = URI("https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysis")
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": {
"channel_type": "individual",
"gender": null,
"age_range": "25-34",
"primary_language": "en",
"mpaa": {
"rating": "PG-13",
"reason": "Occasional strong language during live gameplay."
},
"content_formats": [
{
"content_format": "Live gameplay",
"strength_rating": 92,
"parent": {
"value": "Gaming",
"index": 1
}
}
],
"interests": [
{
"interest": "Competitive gaming",
"strength_rating": 95,
"reason": "Regular ranked play, tournament coverage, and strategy discussion.",
"classification": {
"topic": "Gaming",
"category": "Esports",
"index": 1
}
}
],
"biography": "A variety gaming creator focused on ranked play, speedruns, and community challenges.",
"classifications": [
{
"topic": "Gaming",
"category": "Live Streaming",
"reason": "Most published content consists of live gameplay and audience interaction."
},
{
"topic": "Entertainment",
"category": "Community Content",
"reason": "Recurring viewer challenges and community game sessions."
}
],
"primary_classification": {
"topic": "Gaming",
"category": "Live Streaming",
"reason": "Live gameplay is the creator's primary format."
},
"real_first_name": null,
"real_last_name": null,
"aliases": [
"Streamer 123"
],
"birthday": null,
"residence": null,
"nationality": null,
"height_in_inches": null,
"family": {
"has_children": false,
"relationship_status": "not_publicly_disclosed",
"notable_family_members": []
},
"appearance": {
"shows_face": true,
"is_vtuber": false,
"is_ai_generated_influencer": false,
"notable_physical_characteristics": []
},
"platforms": [
{
"platform_name": "Twitch",
"handle": "streamer123",
"platform_url": "https://twitch.tv/streamer123",
"primary_content_type": "Live streams"
},
{
"platform_name": "YouTube",
"handle": "streamer123",
"platform_url": "https://youtube.com/@streamer123",
"primary_content_type": "Highlights and tutorials"
}
],
"background": {
"education": [],
"original_motivation": "To share competitive gameplay and build an interactive community."
},
"business": {
"collaborations": [],
"monetization": [
{
"revenue_stream": "Platform subscriptions",
"estimated_importance": 8,
"details": "Recurring subscriptions and gifted subscriptions.",
"platform": "Twitch"
},
{
"revenue_stream": "Brand partnerships",
"estimated_importance": 6,
"details": "Sponsored integrations related to gaming hardware and software.",
"platform": null
}
],
"ventures": []
}
},
"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 analysis
Fetch AI-enriched metadata for a profile, including demographics, classifications, interests, and business data.
Note: This endpoint consumes 100 quota units per request.
GET
/
platforms
/
{platform}
/
profiles
/
{profile_id}
/
analysis
Get profile analysis
curl --request GET \
--url https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysisimport requests
url = "https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysis"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysis', 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}/analysis",
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}/analysis"
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}/analysis")
.asString();require 'uri'
require 'net/http'
url = URI("https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysis")
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": {
"channel_type": "individual",
"gender": null,
"age_range": "25-34",
"primary_language": "en",
"mpaa": {
"rating": "PG-13",
"reason": "Occasional strong language during live gameplay."
},
"content_formats": [
{
"content_format": "Live gameplay",
"strength_rating": 92,
"parent": {
"value": "Gaming",
"index": 1
}
}
],
"interests": [
{
"interest": "Competitive gaming",
"strength_rating": 95,
"reason": "Regular ranked play, tournament coverage, and strategy discussion.",
"classification": {
"topic": "Gaming",
"category": "Esports",
"index": 1
}
}
],
"biography": "A variety gaming creator focused on ranked play, speedruns, and community challenges.",
"classifications": [
{
"topic": "Gaming",
"category": "Live Streaming",
"reason": "Most published content consists of live gameplay and audience interaction."
},
{
"topic": "Entertainment",
"category": "Community Content",
"reason": "Recurring viewer challenges and community game sessions."
}
],
"primary_classification": {
"topic": "Gaming",
"category": "Live Streaming",
"reason": "Live gameplay is the creator's primary format."
},
"real_first_name": null,
"real_last_name": null,
"aliases": [
"Streamer 123"
],
"birthday": null,
"residence": null,
"nationality": null,
"height_in_inches": null,
"family": {
"has_children": false,
"relationship_status": "not_publicly_disclosed",
"notable_family_members": []
},
"appearance": {
"shows_face": true,
"is_vtuber": false,
"is_ai_generated_influencer": false,
"notable_physical_characteristics": []
},
"platforms": [
{
"platform_name": "Twitch",
"handle": "streamer123",
"platform_url": "https://twitch.tv/streamer123",
"primary_content_type": "Live streams"
},
{
"platform_name": "YouTube",
"handle": "streamer123",
"platform_url": "https://youtube.com/@streamer123",
"primary_content_type": "Highlights and tutorials"
}
],
"background": {
"education": [],
"original_motivation": "To share competitive gameplay and build an interactive community."
},
"business": {
"collaborations": [],
"monetization": [
{
"revenue_stream": "Platform subscriptions",
"estimated_importance": 8,
"details": "Recurring subscriptions and gifted subscriptions.",
"platform": "Twitch"
},
{
"revenue_stream": "Brand partnerships",
"estimated_importance": 6,
"details": "Sponsored integrations related to gaming hardware and software.",
"platform": null
}
],
"ventures": []
}
},
"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"

