newestqueryoptionalnumber — Filter by newest.
Example: 1
Beladed Livestream API
Details - Get All through the reviewed Beladed Livestream contract.
/api/video/details/allcurl --request GET 'https://api.beladed.dev/api/video/details/all?newest=1&updated=1&nearlive=1&nowlive=1&postlive=1&tournament=1&categoryId=id_demo_001&category=Board&subCategoryId=id_demo_001&subCategory=Outdoor+Party&channelId=id_demo_001&channel=Basketball&search=game&offset=9&limit=100&order=asc&sort=scheduleDate' \
--header 'Accept: application/json' \
--header 'X-Beladed-API-Key: BELADED_SECRET_KEY'const response = await fetch("https://api.beladed.dev/api/video/details/all?newest=1&updated=1&nearlive=1&nowlive=1&postlive=1&tournament=1&categoryId=id_demo_001&category=Board&subCategoryId=id_demo_001&subCategory=Outdoor+Party&channelId=id_demo_001&channel=Basketball&search=game&offset=9&limit=100&order=asc&sort=scheduleDate", {
method: "GET",
headers: {
"Accept": "application/json",
"X-Beladed-API-Key": "BELADED_SECRET_KEY"
}
});
const data = await response.json();import requests
response = requests.request(
"GET",
"https://api.beladed.dev/api/video/details/all?newest=1&updated=1&nearlive=1&nowlive=1&postlive=1&tournament=1&categoryId=id_demo_001&category=Board&subCategoryId=id_demo_001&subCategory=Outdoor+Party&channelId=id_demo_001&channel=Basketball&search=game&offset=9&limit=100&order=asc&sort=scheduleDate",
headers={"Accept":"application/json","X-Beladed-API-Key":"BELADED_SECRET_KEY"},
timeout=30,
)
response.raise_for_status()
data = response.json()<?php
$client = curl_init("https://api.beladed.dev/api/video/details/all?newest=1&updated=1&nearlive=1&nowlive=1&postlive=1&tournament=1&categoryId=id_demo_001&category=Board&subCategoryId=id_demo_001&subCategory=Outdoor+Party&channelId=id_demo_001&channel=Basketball&search=game&offset=9&limit=100&order=asc&sort=scheduleDate");
curl_setopt_array($client, [
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => ["Accept: application/json","X-Beladed-API-Key: BELADED_SECRET_KEY"],
CURLOPT_RETURNTRANSFER => true,
]);
$response = curl_exec($client);require "net/http"
require "json"
uri = URI("https://api.beladed.dev/api/video/details/all?newest=1&updated=1&nearlive=1&nowlive=1&postlive=1&tournament=1&categoryId=id_demo_001&category=Board&subCategoryId=id_demo_001&subCategory=Outdoor+Party&channelId=id_demo_001&channel=Basketball&search=game&offset=9&limit=100&order=asc&sort=scheduleDate")
request = Net::HTTP::Get.new(uri)
request["Accept"] = "application/json"
request["X-Beladed-API-Key"] = "BELADED_SECRET_KEY"
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(request) }var request = java.net.http.HttpRequest.newBuilder()
.uri(java.net.URI.create("https://api.beladed.dev/api/video/details/all?newest=1&updated=1&nearlive=1&nowlive=1&postlive=1&tournament=1&categoryId=id_demo_001&category=Board&subCategoryId=id_demo_001&subCategory=Outdoor+Party&channelId=id_demo_001&channel=Basketball&search=game&offset=9&limit=100&order=asc&sort=scheduleDate"))
.header("Accept", "application/json")
.header("X-Beladed-API-Key", "BELADED_SECRET_KEY")
.method("GET", java.net.http.HttpRequest.BodyPublishers.noBody())
.build();
var response = java.net.http.HttpClient.newHttpClient().send(request, java.net.http.HttpResponse.BodyHandlers.ofString());package main
import (
"bytes"
"net/http"
)
func callBeladed() (*http.Response, error) {
body := []byte("")
request, err := http.NewRequest("GET", "https://api.beladed.dev/api/video/details/all?newest=1&updated=1&nearlive=1&nowlive=1&postlive=1&tournament=1&categoryId=id_demo_001&category=Board&subCategoryId=id_demo_001&subCategory=Outdoor+Party&channelId=id_demo_001&channel=Basketball&search=game&offset=9&limit=100&order=asc&sort=scheduleDate", bytes.NewReader(body))
if err != nil { return nil, err }
request.Header.Set("Accept", "application/json")
request.Header.Set("X-Beladed-API-Key", "BELADED_SECRET_KEY")
return http.DefaultClient.Do(request)
}using var client = new HttpClient();
using var request = new HttpRequestMessage(new HttpMethod("GET"), "https://api.beladed.dev/api/video/details/all?newest=1&updated=1&nearlive=1&nowlive=1&postlive=1&tournament=1&categoryId=id_demo_001&category=Board&subCategoryId=id_demo_001&subCategory=Outdoor+Party&channelId=id_demo_001&channel=Basketball&search=game&offset=9&limit=100&order=asc&sort=scheduleDate");
request.Headers.TryAddWithoutValidation("Accept", "application/json");
request.Headers.TryAddWithoutValidation("X-Beladed-API-Key", "BELADED_SECRET_KEY");
using var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();var request = URLRequest(url: URL(string: "https://api.beladed.dev/api/video/details/all?newest=1&updated=1&nearlive=1&nowlive=1&postlive=1&tournament=1&categoryId=id_demo_001&category=Board&subCategoryId=id_demo_001&subCategory=Outdoor+Party&channelId=id_demo_001&channel=Basketball&search=game&offset=9&limit=100&order=asc&sort=scheduleDate")!)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue("BELADED_SECRET_KEY", forHTTPHeaderField: "X-Beladed-API-Key")
let (data, response) = try await URLSession.shared.data(for: request)val request = okhttp3.Request.Builder()
.url("https://api.beladed.dev/api/video/details/all?newest=1&updated=1&nearlive=1&nowlive=1&postlive=1&tournament=1&categoryId=id_demo_001&category=Board&subCategoryId=id_demo_001&subCategory=Outdoor+Party&channelId=id_demo_001&channel=Basketball&search=game&offset=9&limit=100&order=asc&sort=scheduleDate")
.addHeader("Accept", "application/json")
.addHeader("X-Beladed-API-Key", "BELADED_SECRET_KEY")
.method("GET", null)
.build()
val response = okhttp3.OkHttpClient().newCall(request).execute()
newestqueryoptionalnumber — Filter by newest.
Example: 1
updatedqueryoptionalnumber — Filter by updated.
Example: 1
nearlivequeryoptionalnumber — Filter by nearlive.
Example: 1
nowlivequeryoptionalnumber — Filter by nowlive.
Example: 1
postlivequeryoptionalnumber — Filter by postlive.
Example: 1
tournamentqueryoptionalnumber — Filter by tournament.
Example: 1
categoryIdqueryoptionalstring — Filter by categoryId.
Example: id_demo_001
categoryqueryoptionalstring — Filter by category.
Example: Board
subCategoryIdqueryoptionalstring — Filter by subCategoryId.
Example: id_demo_001
subCategoryqueryoptionalstring — Filter by subCategory.
Example: Outdoor Party
channelIdqueryoptionalstring — Filter by channelId.
Example: id_demo_001
channelqueryoptionalstring — Filter by channel.
Example: Basketball
searchqueryoptionalstring — Filter by search.
Example: game
offsetqueryoptionalnumber — Filter by offset.
Example: 9
limitqueryoptionalnumber — Filter by limit.
Example: 100
orderqueryoptionalstring — Filter by order.
Example: asc
sortqueryoptionalstring — Filter by sort.
Example: scheduleDate
No body is required.
{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"status": {
"type": "string"
}
}
},
"requestId": {
"type": "string"
}
}
}{
"data": {
"id": "id_demo_001",
"status": "available"
},
"requestId": "req_demo_001"
}
invalid_requestThe request did not satisfy the documented contract.
authentication_requiredThe credential is missing or invalid.
not_authorizedThe account, product scope, permission, or origin is not eligible.
not_foundThe requested public or account-owned resource was not found.
rate_limitedRetry after the current product limit resets.
This operation is published from reviewed repository contracts. Source metadata is included for traceability without exposing internal implementation details.