> For the complete documentation index, see [llms.txt](https://docs.drops.bot/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.drops.bot/api-reference/introduction.md).

# Introduction

## API Reference

Complete reference for all Drops shared API endpoints.

### Base URL

All API requests should be made to:

```
https://api.drops.bot/shared/
```

### Authentication

All endpoints require authentication via API key. Include your API key in the `x-api-key` header:

```
x-api-key: YOUR_API_KEY
```

### Response Format

All API responses are returned in JSON format with the following structure:

#### Success Response

```
{
  "success": true,
  "data": {
    // Response data here
  }
}
```

#### Error Response

```
{
  "success": false,
  "error": "Human readable error message"
}
```

### Available Endpoints

#### Airdrops API

Check airdrop eligibility and get detailed airdrop information for addresses across multiple blockchain networks.

* `GET /shared/v1/airdrops/:network/:address` - Check airdrop eligibility
