// Contoh kode Node.js untuk panggilan API
// Pastikan mengganti placeholder dengan informasi yang sesuai

const fetch = require('node-fetch');

const apiUrl = 'your-api-url';
const apiKey = 'your-api-key';

fetch(apiUrl, {
  method: 'GET',
  headers: { 'Ocp-Apim-Subscription-Key': apiKey }
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));