Python
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
directories_tree = client.streaming.directories.get_tree()
print(directories_tree.tree)package main
import (
"context"
"fmt"
"github.com/G-Core/gcore-go"
"github.com/G-Core/gcore-go/option"
)
func main() {
client := gcore.NewClient(
option.WithAPIKey("My API Key"),
)
directoriesTree, err := client.Streaming.Directories.GetTree(context.TODO())
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", directoriesTree.Tree)
}curl --request GET \
--url https://api.gcore.com/streaming/directories/tree \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.gcore.com/streaming/directories/tree', 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.gcore.com/streaming/directories/tree",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://api.gcore.com/streaming/directories/tree")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gcore.com/streaming/directories/tree")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"tree": [
{
"id": 100,
"name": "New series",
"parent_id": null,
"items_count": 2,
"created_at": "2024-07-01T18:00:00Z",
"updated_at": "2024-07-01T18:00:00Z",
"descendants": [
{
"id": 101,
"name": "New series, Season 1",
"parent_id": 100,
"items_count": 12,
"created_at": "2024-07-01T18:10:00Z",
"updated_at": "2024-07-01T18:10:00Z",
"descendants": []
}
]
}
]
}Directories
Get list of directories
Tree structure of directories.
This endpoint returns hierarchical data about directories in video hosting.
GET
/
streaming
/
directories
/
tree
Python
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
directories_tree = client.streaming.directories.get_tree()
print(directories_tree.tree)package main
import (
"context"
"fmt"
"github.com/G-Core/gcore-go"
"github.com/G-Core/gcore-go/option"
)
func main() {
client := gcore.NewClient(
option.WithAPIKey("My API Key"),
)
directoriesTree, err := client.Streaming.Directories.GetTree(context.TODO())
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", directoriesTree.Tree)
}curl --request GET \
--url https://api.gcore.com/streaming/directories/tree \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.gcore.com/streaming/directories/tree', 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.gcore.com/streaming/directories/tree",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://api.gcore.com/streaming/directories/tree")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gcore.com/streaming/directories/tree")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"tree": [
{
"id": 100,
"name": "New series",
"parent_id": null,
"items_count": 2,
"created_at": "2024-07-01T18:00:00Z",
"updated_at": "2024-07-01T18:00:00Z",
"descendants": [
{
"id": 101,
"name": "New series, Season 1",
"parent_id": 100,
"items_count": 12,
"created_at": "2024-07-01T18:10:00Z",
"updated_at": "2024-07-01T18:10:00Z",
"descendants": []
}
]
}
]
}Was this page helpful?
⌘I