> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nulldrop.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Null Drop API

> Reference for the Null Drop v1 REST API

## Overview

Null Drop v1 provides a simple REST API to upload files and manage your uploads.

* Base URL: `https://nulldrop.xyz/api/v1`
* Auth: Bearer token (pass your API key in the `Authorization` header)

```http theme={null}
Authorization: Bearer <your_api_key>
```

## Endpoints

* `POST /upload` – Upload a file (multipart form-data, field `file`)
* `GET /files` – List your files
* `GET /files/{id}` – Get a single file
* `DELETE /files/{id}` – Delete a file
