Authentication
All API requests require authentication using API keys.
API Key Authentication
Drops.bot uses API key authentication to secure access to shared endpoints. Include your API key in the x-api-key header with every request.
Header Format
x-api-key: YOUR_API_KEY_HEREExample Request
curl -X GET \
"https://api.drops.bot/v1/shared/v1/airdrops/evm/0x123...abcd" \
-H "x-api-key: your-secret-api-key" \
-H "Content-Type: application/json"Obtaining an API Key
To get your API key:
Contact our team - Reach out on X to request access
Specify your use case - Tell us how you plan to use the API
Receive your key - We'll provide you with a unique API key
Start building - Begin making authenticated requests
API Key Security
Keep your API key secure:
Never expose API keys in client-side code
Store keys securely in environment variables
Environment Variables
Store your API key securely:
Last updated