The most effective solution for disseminating audiovisual information and reaching an audience of any size. Whether it's sports events, concerts or global conferences: Our webcasting module provides a powerful and reliable solution to engage your viewers effectively.
The best solution for interactive online seminars aimed at larger groups of 20 to several hundred participants. If you want to host live training courses, product presentations or panel discussions, then webinars are the ideal solution.
Like video streaming, podcasts and audio talks let you connect with your target audience in a personal and authentic way. Regular episodes maintain continuous contact with listeners and, compared to complex video productions, podcasts are relatively affordable and easy to create. The audio content can also be reused in a variety of ways.
Nutzen Sie für noch mehr Komfort, die Video-KI Tools und Analytics-Lösungen von 3Q.
Die 3Q API-Lizenz ist ohne Zusatzkosten immer inkludiert.
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} 
