Why customers choose 3Q




Storage, encoding, and delivery (CDN) on 3Q's own hardware in Europe. Worldwide delivery with Multi-CDN. Reliable and scalable.
Managing Livestreaming, Video-on-Demand, Live2VoD, and VoD2Live has never been so easy.
Seamless integration of the powerful 3Q player for an optimal viewing experience. Including options for e.g. video advertising, multi-track audio, and subtitling.
For even greater 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} 