const axios = require('axios'); async function main() { try { const apiKey = 'P3MTJVIM9DV6CXNW8SMX684NW8SMX'; const url = `https://api.metals.dev/v1/latest?api_key=${apiKey}`; console.log('Testing metals.dev API at:', url); const response = await axios.get(url); console.log('Success! Response:', response.data); } catch (err) { console.error('Error:', err.response?.data || err.message); } } main();