Authentication
Last updated
# .env
DROPS_BOT_API_KEY=your-secret-api-key// Using the API key in your application
const response = await fetch('https://api.drops.bot/shared/v1/airdrops/evm/0x123...', {
headers: {
'x-api-key': process.env.DROPS_BOT_API_KEY,
'Content-Type': 'application/json'
}
})