# 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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.drops.bot/api-reference/introduction.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
