Storage, encoding and delivery (CDN) on 3Q proprietary hardware in Europe. Worldwide delivery with 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, for example.
For even more convenience, use 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} 