Cloud Storage & File Sharing — entry 003 of 18
Dropbox
Dropbox is a cloud file-storage and sync platform, and its API lets apps read, write, and share files and folders in a user's Dropbox account. A live POST against the real gateway, api.dropboxapi.com/2/users/get_current_account, returned a 400 without a token, reconfirming OAuth 2.0 auth over HTTPS, and a follow-up OPTIONS preflight echoed the request Origin in Access-Control-Allow-Origin, resolving cors from unknown to yes. The free Basic plan includes 2GB of storage, with paid Plus, Professional, and Business tiers raising the cap and adding team features.
AuthenticationOAuthRequires an OAuth flow; expect app registration.
HTTPSSupportedTraffic is encrypted in transit.
CORSEnabledCallable directly from browser JavaScript.
PricingFreemiumA usable free tier exists, with paid plans for more volume.
FormatsJSONResponses can be requested as JSON.
GreatAPIs Score
Score54
Authentication8/25OAuth flow required
Pricing17/20Freemium tier available
Docs0/20No docs or spec available
Formats9/15Single response format
Freshness20/20Verified within 6 months
Auth quickstart
- Register an app / run the OAuth flow to obtain a bearer token.
- Send it as an Authorization header
Authorization: Bearer <token>
Stored keyNo key stored
Your key is stored only in this browser (localStorage) and sent directly to the API — never to greatapis.