For the complete documentation index, see llms.txt. This page is also available as Markdown.

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_HERE

Example 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:

  1. Contact our team - Reach out on X to request access

  2. Specify your use case - Tell us how you plan to use the API

  3. Receive your key - We'll provide you with a unique API key

  4. Start building - Begin making authenticated requests

API Key Security

Environment Variables

Store your API key securely:

Last updated