Get profile analysis
curl --request GET \
--url https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysis \
--header 'x-api-key: <api-key>'import requests
url = "https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysis"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
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",
CURLOPT_HTTPHEADER => [
"x-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"
"net/http"
"io"
)
func main() {
url := "https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysis"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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")
.header("x-api-key", "<api-key>")
.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)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"payload": {
"channel_type": "<string>",
"gender": "<string>",
"age_range": "<string>",
"primary_language": "<string>",
"mpaa": {
"rating": "<string>",
"reason": "<string>"
},
"content_formats": [
{
"content_format": "<string>",
"strength_rating": 123,
"parent": {
"value": "<string>",
"index": 123
}
}
],
"interests": [
{
"interest": "<string>",
"strength_rating": 123,
"reason": "<string>",
"classification": {
"topic": "<string>",
"category": "<string>",
"index": 123
}
}
],
"biography": "<string>",
"classifications": [
{
"topic": "<string>",
"category": "<string>",
"reason": "<string>"
}
],
"primary_classification": {
"topic": "<string>",
"category": "<string>",
"reason": "<string>"
},
"real_first_name": "<string>",
"real_last_name": "<string>",
"aliases": [
"<string>"
],
"birthday": {
"birthday_day": 123,
"birthday_month": 123,
"birthday_year": 123
},
"residence": {
"city": "<string>",
"state": "<string>",
"country_code": "<string>"
},
"nationality": "<string>",
"height_in_inches": 123,
"family": {
"has_children": true,
"relationship_status": "<string>",
"notable_family_members": [
{
"name": "<string>",
"relationship": "<string>",
"public_figure": true,
"appears_in_content": true
}
]
},
"appearance": {
"shows_face": true,
"is_vtuber": true,
"is_ai_generated_influencer": true,
"notable_physical_characteristics": [
"<string>"
]
},
"platforms": [
{
"platform_name": "<string>",
"handle": "<string>",
"platform_url": "<string>",
"primary_content_type": "<string>"
}
],
"background": {
"education": [
{
"institution": "<string>",
"degree": "<string>",
"field": "<string>"
}
],
"original_motivation": "<string>"
},
"business": {
"collaborations": [
{
"collaboration_partner": "<string>",
"collaboration_type": "<string>",
"description": "<string>"
}
],
"monetization": [
{
"revenue_stream": "<string>",
"estimated_importance": 123,
"details": "<string>",
"platform": "<string>"
}
],
"ventures": [
{
"venture_name": "<string>",
"venture_type": "<string>",
"description": "<string>",
"role": "<string>",
"launch_date": "<string>"
}
]
}
},
"meta": {
"source": "<string>",
"received_at": "2023-11-07T05:31:56Z",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"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}/analysis \
--header 'x-api-key: <api-key>'import requests
url = "https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysis"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
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",
CURLOPT_HTTPHEADER => [
"x-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"
"net/http"
"io"
)
func main() {
url := "https://external-api.streamforge.com/platforms/{platform}/profiles/{profile_id}/analysis"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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")
.header("x-api-key", "<api-key>")
.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)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"payload": {
"channel_type": "<string>",
"gender": "<string>",
"age_range": "<string>",
"primary_language": "<string>",
"mpaa": {
"rating": "<string>",
"reason": "<string>"
},
"content_formats": [
{
"content_format": "<string>",
"strength_rating": 123,
"parent": {
"value": "<string>",
"index": 123
}
}
],
"interests": [
{
"interest": "<string>",
"strength_rating": 123,
"reason": "<string>",
"classification": {
"topic": "<string>",
"category": "<string>",
"index": 123
}
}
],
"biography": "<string>",
"classifications": [
{
"topic": "<string>",
"category": "<string>",
"reason": "<string>"
}
],
"primary_classification": {
"topic": "<string>",
"category": "<string>",
"reason": "<string>"
},
"real_first_name": "<string>",
"real_last_name": "<string>",
"aliases": [
"<string>"
],
"birthday": {
"birthday_day": 123,
"birthday_month": 123,
"birthday_year": 123
},
"residence": {
"city": "<string>",
"state": "<string>",
"country_code": "<string>"
},
"nationality": "<string>",
"height_in_inches": 123,
"family": {
"has_children": true,
"relationship_status": "<string>",
"notable_family_members": [
{
"name": "<string>",
"relationship": "<string>",
"public_figure": true,
"appears_in_content": true
}
]
},
"appearance": {
"shows_face": true,
"is_vtuber": true,
"is_ai_generated_influencer": true,
"notable_physical_characteristics": [
"<string>"
]
},
"platforms": [
{
"platform_name": "<string>",
"handle": "<string>",
"platform_url": "<string>",
"primary_content_type": "<string>"
}
],
"background": {
"education": [
{
"institution": "<string>",
"degree": "<string>",
"field": "<string>"
}
],
"original_motivation": "<string>"
},
"business": {
"collaborations": [
{
"collaboration_partner": "<string>",
"collaboration_type": "<string>",
"description": "<string>"
}
],
"monetization": [
{
"revenue_stream": "<string>",
"estimated_importance": 123,
"details": "<string>",
"platform": "<string>"
}
],
"ventures": [
{
"venture_name": "<string>",
"venture_type": "<string>",
"description": "<string>",
"role": "<string>",
"launch_date": "<string>"
}
]
}
},
"meta": {
"source": "<string>",
"received_at": "2023-11-07T05:31:56Z",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"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"
}
}Authorizations
Your API key. Include it in the x-api-key header for all requests.
Path Parameters
Platform identifier
Available options:
twitch, youtube, instagram, tiktok Example:
"twitch"
Platform-specific creator ID
Example:
"484563826"
⌘I

