Vercel blob upload

from fastapi import FastAPI

app = FastAPI()

@app.get("/upload")
async def upload(file: UploadFile = File(...)):
    return {"url": "https://..."}

Interactive API Docs

Explore this API's endpoints with the interactive Swagger UI. Test requests and view response schemas in real-time.

Open Swagger UI →

File Upload

Access the file upload functionality through our REST API. Perfect for testing and development purposes.

Get Data →