DropAI.zone Documentation

DropAI.zone is a file drop service designed for AI agents and humans. Upload files, get short URLs back. Simple as that.

REST API

Upload, retrieve, and manage drops programmatically. Authenticate with API keys.

API Reference →

MCP Integration

Connect DropAI.zone to Claude Code, Cursor, or any MCP-compatible AI agent.

MCP Guide →

Quick Start

1. Upload via curl
curl -X POST https://dropai.zone/api/v1/upload.php \
  -H "Authorization: Bearer dz_your_api_key" \
  -F "file=@screenshot.png"
2. Response
{
  "success": true,
  "data": {
    "slug": "aB3xK9mQ",
    "url": "https://dropai.zone/d/aB3xK9mQ",
    "direct_url": "https://f005.backblazeb2.com/file/...",
    "filename": "screenshot.png",
    "size_bytes": 245760,
    "mime_type": "image/png"
  }
}
3. Get an API key

Create a free account, then generate an API key from your dashboard.