Serve API

Fast, secure file storage API

v1.0.0
API Testing:

Getting Started

Welcome to the Serve API! This guide will help you get started with uploading and managing files.

Quick Setup

  1. 1Generate an API key from your dashboard
  2. 2Include it in your requests
  3. 3Start uploading files

Base URL

https://your-domain.com/api

First Request

Here's how to make your first API call:

curl -X POST https://your-domain.com/api/upload \
  -H "Authorization: Bearer sk_live_your_api_key" \
  -F "file=@image.jpg" \
  -F "tags=profile,avatar"