List content for a game
curl --request GET \
--url https://external-api.streamforge.com/platforms/{platform}/games/{game_id}/content \
--header 'x-api-key: <api-key>'import requests
url = "https://external-api.streamforge.com/platforms/{platform}/games/{game_id}/content"
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}/games/{game_id}/content', 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}/games/{game_id}/content",
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}/games/{game_id}/content"
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}/games/{game_id}/content")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://external-api.streamforge.com/platforms/{platform}/games/{game_id}/content")
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": [
{
"content_id": "<string>",
"title": "<string>",
"description": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z",
"duration": 123,
"url": "<string>",
"categories": [
{
"id": "<string>",
"name": "<string>",
"igdb_id": 123,
"igdb_name": "<string>",
"igdb_slug": "<string>"
}
],
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"statistics": {
"viewers": {
"avg": 123,
"max": 123
},
"watched_minutes": {
"sum": 123
},
"airtime_minutes": {
"sum": 123
},
"views": {
"sum": 123
},
"likes": {
"sum": 123
},
"comments": {
"sum": 123,
"avg": 123
}
},
"chapters": [
{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z",
"duration": 123,
"categories": [
{
"id": "<string>",
"name": "<string>",
"igdb_id": 123,
"igdb_name": "<string>",
"igdb_slug": "<string>"
}
],
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"statistics": {
"viewers": {
"avg": 123,
"max": 123
}
}
}
],
"profile_id": "<string>"
}
],
"paging": {
"limit": 123,
"next_cursor": "<string>",
"has_more": true
},
"meta": {
"source": "<string>",
"received_at": "2023-11-07T05:31:56Z",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"game": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
}
}
}{
"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"
}
}Content
Get content for a game
Fetch content (streams/videos) related to a specific game, sorted by creation/publication date. Games only exist on Twitch and YouTube platforms.
GET
/
platforms
/
{platform}
/
games
/
{game_id}
/
content
List content for a game
curl --request GET \
--url https://external-api.streamforge.com/platforms/{platform}/games/{game_id}/content \
--header 'x-api-key: <api-key>'import requests
url = "https://external-api.streamforge.com/platforms/{platform}/games/{game_id}/content"
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}/games/{game_id}/content', 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}/games/{game_id}/content",
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}/games/{game_id}/content"
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}/games/{game_id}/content")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://external-api.streamforge.com/platforms/{platform}/games/{game_id}/content")
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": [
{
"content_id": "<string>",
"title": "<string>",
"description": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z",
"duration": 123,
"url": "<string>",
"categories": [
{
"id": "<string>",
"name": "<string>",
"igdb_id": 123,
"igdb_name": "<string>",
"igdb_slug": "<string>"
}
],
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"statistics": {
"viewers": {
"avg": 123,
"max": 123
},
"watched_minutes": {
"sum": 123
},
"airtime_minutes": {
"sum": 123
},
"views": {
"sum": 123
},
"likes": {
"sum": 123
},
"comments": {
"sum": 123,
"avg": 123
}
},
"chapters": [
{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z",
"duration": 123,
"categories": [
{
"id": "<string>",
"name": "<string>",
"igdb_id": 123,
"igdb_name": "<string>",
"igdb_slug": "<string>"
}
],
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"statistics": {
"viewers": {
"avg": 123,
"max": 123
}
}
}
],
"profile_id": "<string>"
}
],
"paging": {
"limit": 123,
"next_cursor": "<string>",
"has_more": true
},
"meta": {
"source": "<string>",
"received_at": "2023-11-07T05:31:56Z",
"request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"game": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
}
}
}{
"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 (twitch or youtube)
Available options:
twitch, youtube Example:
"twitch"
Platform-specific game ID (Twitch game ID or YouTube game channel ID)
Example:
"2011938005"
Query Parameters
Sort field
Available options:
created_at Sort order
Available options:
asc, desc Pagination cursor token from previous response
Maximum number of results per page (1-100, default 20)
Required range:
1 <= x <= 100Filter by content type
Available options:
stream, video, short, all Filter content from this date (YYYY-MM-DD)
Pattern:
^\d{4}-\d{2}-\d{2}$Example:
"2024-01-01"
Filter content until this date (YYYY-MM-DD)
Pattern:
^\d{4}-\d{2}-\d{2}$Example:
"2024-12-31"
⌘I

