Skip to main content
To retrieve details for a single Box Hub, call the GET /2.0/hubs/{hub_id} endpoint with the hub’s ID. You can find the hub ID in the Box Hubs web interface URL (for example, https://*.app.box.com/hubs/12345 has hub ID 12345).
Box Hubs endpoints require the box-version: 2025.0 header. If you omit this header, the API returns a 400 error with the message Missing required box-version header. Supported API versions: [2025.0]. For more information, see Box API versioning strategy.

Get hub by ID

curl -i -X GET "https://api.box.com/2.0/hubs/HUB_ID" \
     -H "Authorization: Bearer <ACCESS_TOKEN>" \
     -H "box-version: 2025.0"
Replace HUB_ID (or hubId / hub_id) with the actual hub ID. A successful response returns the Hub object.