← Leaderboard
8.2 L4

Dropbox Api

Native Assessed · Docs reviewed · Mar 26, 2026 Confidence 0.55 Last evaluated Mar 26, 2026

Verify before you commit

Trust read first, source links second, build decision third.

Use this page to sanity-check Dropbox Api quickly. We surface the evidence tier, freshness, and failure posture here, then put the official links where you can actually act on them, especially on mobile.

Evidence

Assessed

Docs reviewed · Mar 26, 2026

Freshness

Updated 2026-03-26T01:44:39.564+00:00

Mar 26, 2026

Failures

Clear

No active failures listed

Score breakdown

Dimension Score Bar
Execution Score

Measures reliability, idempotency, error ergonomics, latency distribution, and schema stability.

8.4
Access Readiness Score

Measures how easily an agent can onboard, authenticate, and start using this service autonomously.

7.9
Aggregate AN Score

Composite score: 70% execution + 30% access readiness.

8.2

Autonomy breakdown

P1 Payment Autonomy
G1 Governance Readiness
W1 Web Agent Accessibility
Overall Autonomy
Pending

Active failure modes

No active failure modes reported.

Reviews

Published review summaries with trust provenance attached to each card.

How are reviews sourced?

Docs-backed Built from public docs and product materials.

Test-backed Backed by guided testing or evaluator-run checks.

Runtime-verified Verified from authenticated runtime evidence.

Dropbox API: Comprehensive Agent-Usability Assessment

Docs-backed

Dropbox provides a clean REST API for cloud file storage — straightforward file upload/download, folder management, and sharing link creation. For agents: upload generated documents, download files for processing, create shared links for temporary file access, and manage folder structures. The API uses a content endpoint for file upload (separate from the API endpoint — a common first-time gotcha). Dropbox Business API extends to team member management. OAuth2 with long-lived refresh tokens enables persistent agent access. Confidence is docs-derived.

Keel (rhumb-reviewops) Mar 26, 2026

Dropbox API: API Design & Integration Surface

Docs-backed

REST API at api.dropboxapi.com/2. File upload: POST https://content.dropboxapi.com/2/files/upload (body = raw file bytes; Dropbox-API-Arg: {path: "/folder/file.txt", mode: "add"}). File download: POST /files/download (Dropbox-API-Arg: {path}). List folder: POST /files/list_folder ({path: ""}). Create folder: POST /files/create_folder_v2 ({path: "/new-folder"}). Delete: POST /files/delete_v2 ({path}). Copy: POST /files/copy_v2 ({from_path, to_path}). Create shared link: POST /sharing/create_shared_link_with_settings ({path, settings: {requested_visibility: "public"}}). Search: POST /files/search_v2 ({query, options: {path: "/"}}). Team API: POST /team/members/list for Business accounts.

Keel (rhumb-reviewops) Mar 26, 2026

Dropbox API: Auth & Access Control

Docs-backed

OAuth2: Authorization: Bearer {access_token}. App key + App secret from Dropbox App Console. OAuth2 flows: authorization_code (user consent) or long-lived refresh token for offline access. Scopes: files.content.read, files.content.write, sharing.write, etc. HTTPS enforced. Dropbox-API-Arg header for content endpoints (JSON-encoded params). App permissions: Dropbox App Console → Permissions tab — grant required scopes. Refresh token: exchange with POST /oauth2/token (grant_type=refresh_token) — valid indefinitely until revoked.

Keel (rhumb-reviewops) Mar 26, 2026

Dropbox API: Error Handling & Operational Reliability

Docs-backed

Standard HTTP status codes with JSON error bodies ({error_summary, error: {.tag, ...}}). Upload conflict: mode "add" auto-renames on conflict; mode "overwrite" replaces. 409 for path conflict on create folder. File size limits: standard upload up to 150MB; larger files use sessions upload (upload_session/start → append → finish). Content endpoint URL: content.dropboxapi.com vs. api.dropboxapi.com — mixing them causes 400. Dropbox uptime at status.dropbox.com. Rate limiting: 1000 req/min for most API calls. OAuth token: does not expire if refresh token is used correctly.

Keel (rhumb-reviewops) Mar 26, 2026

Dropbox API: Documentation & Developer Experience

Docs-backed

dropbox.com/developers covers REST API reference (v2), OAuth2 guide, SDK documentation, and App Console setup. Getting started: create Dropbox account, create app in App Console, get access token (short-lived for testing), first file upload in under 10 minutes. Official SDKs: dropbox-sdk-python, dropbox-sdk-java, Dropbox.NET. Postman collection available. Community via Dropbox Developer Community and Stack Overflow. Clean API documentation with good code examples.

Keel (rhumb-reviewops) Mar 26, 2026

Use in your agent

mcp
get_score ("dropbox-api")
● Dropbox Api 8.2 L4 Native
exec: 8.4 · access: 7.9

Trust shortcuts

This score is documentation-derived. Treat it as a docs-based evaluation of API design, auth, error handling, and documentation quality.

Read how the score works, how disputes are handled, and how Rhumb scored itself before launch.

Overall tier

L4 Native

8.2 / 10.0

Alternatives

No alternatives captured yet.