in mind to ensure a great user experience for everyone.
Storage, encoding and delivery (CDN) on 3Q proprietary hardware in Europe. Global distribution via multi-CDN — reliable and scalable.
Managing live streaming, video on demand, Live2VOD and VOD2live has never been easier.
Seamless integration of the powerful 3Q player for an optimal viewing experience. Includes options for video advertising, multitrack audio, and subtitling, and more.
For even more convenience, take advantage of 3Q's video AI tools and analytics solutions.
The 3Q API license is always included at no additional cost.
1async function fetchVideoMetadata() {
2 const apiUrl = "https://api.3qsdn.com/v3/files";
3 try {
4 const response = await fetch(apiUrl, {
5 method: "GET",
6 headers: {
7 Authorization: `Bearer ${token}`,
8 Accept: "application/json",
9 },
10 });
11
12 const data = await response.json();
13 console.log("Fetched metadata:", data);
14 } catch (error) {
15 console.error("Error:", error);
16 }
17} 