jsx
1const response = await fetch('/api/getLogos', { 2 method: 'POST', 3 headers: { 4 'Content-Type': 'application/json' 5 }, 6 body: JSON.stringify({ 7 symbols: ["BTCUSDT","ETH","1000PEPE"], 8 resolution: "64", 9 mode: "single", 10 parser: {{ 11 enable: true, 12 options: { 13 removeNumbers: true 14 } 15 }} 16 }) 17}) 18const json = await response.json()
json
1[]