YOUR API KEY
Use this key to access the PunkIA API
INTEGRATION
fetch('http://localhost:5000/api/v1/chat', {
method: 'POST',
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
message: 'Your query here'
})
})