# Box Platform API **Provider:** Box Platform **Category:** storage **Base URL:** `https://api.box.com/2.0` **Auth:** oauth2 — `Authorization: Bearer YOUR_ACCESS_TOKEN` **Rate Limit:** 4,000 API calls/min (authenticated) **Free Tier:** Yes — [object Object] **Pricing:** Free tier available (freemium) **Docs:** https://box.dev ## Description Box Platform provides functionality to provide access to content stored within Box. It provides endpoints for basic manipulation of files and folders, management of users within an enterprise, as well as more complex topics such as legal holds and retention poli ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://api.box.com/2.0/authorize` | Authorize user | | GET | `https://api.box.com/2.0/collaboration_whitelist_entries` | List allowed collaboration domains | | POST | `https://api.box.com/2.0/collaboration_whitelist_entries` | Add domain to list of allowed collaboration domains | | DELETE | `https://api.box.com/2.0/collaboration_whitelist_entries/{collaboration_whitelist_entry_id}` | Remove domain from list of allowed collaboration domains | | GET | `https://api.box.com/2.0/collaboration_whitelist_entries/{collaboration_whitelist_entry_id}` | Get allowed collaboration domain | | GET | `https://api.box.com/2.0/collaboration_whitelist_exempt_targets` | List users exempt from collaboration domain restrictions | | POST | `https://api.box.com/2.0/collaboration_whitelist_exempt_targets` | Create user exemption from collaboration domain restrictions | | DELETE | `https://api.box.com/2.0/collaboration_whitelist_exempt_targets/{collaboration_whitelist_exempt_target_id}` | Remove user from list of users exempt from domain restrictions | ## Authentication OAuth 2.0 or JWT (Server Authentication) for machine-to-machine ``` Authorization: Bearer YOUR_ACCESS_TOKEN ``` ## Sample Request ```bash curl -X GET 'https://api.box.com/2.0/authorize' \ -H 'Authorization: Bearer ' ``` ## Sample Response ```json {} ``` ## Pricing Details Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom. --- *Source: [API Map](https://apimap.dev/apis/box-platform/) — CC BY 4.0*