Settings

Manage your account and API keys

API Keys

Loading...

Quick start

# Upload a file
curl -X POST https://api.medialabs.app/v1/files/upload \
  -H "Authorization: Bearer ml_your_api_key" \
  -F "file=@photo.jpg"

# List files
curl https://api.medialabs.app/v1/files \
  -H "Authorization: Bearer ml_your_api_key"

# Delete a file
curl -X DELETE https://api.medialabs.app/v1/files/ml_img_xxx \
  -H "Authorization: Bearer ml_your_api_key"