Free File Host

A Free File Host via API

NOTE: All files are uploaded to secure S3 storage and will be deleted after 24 hours.

API Endpoint:

https://api.hyprlab.io/v1/uploads

Image Upload Examples

curl -X POST https://api.hyprlab.io/v1/uploads \
  -H "Authorization: Bearer $HYPRLAB_API_KEY" \
  -F "file=@/path/to/your/image.jpg" \
  -F "output_format=webp"

Sample Response:

{
  "imageUrl": "https://example.com/image.png"
}

Video Upload Examples

curl -X POST https://api.hyprlab.io/v1/uploads \
  -H "Authorization: Bearer $HYPRLAB_API_KEY" \
  -F "file=@/path/to/your/video.mp4"

Sample Response:

{
  "videoUrl": "https://example.com/video.mp4"
}

Last updated