Cloud Storage & File Sharing — entry 011 of 18
OneDrive
OneDrive's API, served through Microsoft Graph, lets applications read, write, and share files and folders in a user's personal or organizational OneDrive. A live GET against the real gateway, graph.microsoft.com/v1.0/me/drive, returned a 401 without a token, reconfirming OAuth 2.0 auth over HTTPS, and a follow-up OPTIONS preflight returned Access-Control-Allow-Origin: *, resolving cors from unknown to yes. Personal Microsoft accounts get 5GB free, with paid Microsoft 365 subscriptions raising the storage cap substantially.
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.