# Get Visible Libraries Retrieve all libraries visible to the current user. **Endpoint**: `GET /api/libraries/visible` **Auth**: Required ## Request Headers | Header | Type | Required | Description | |--------|------|-----------|-------------| | Authorization | string | Yes | Bearer token | ### Example Request ```http GET /api/libraries/visible Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... ``` ## Response (200 OK) ```json { "libraries": [ { "id": "uuid", "name": "My Ebooks", "description": "Ebook collection", "type_name": "ebooks", "is_visible": true } ] } ``` ## Error Responses | Code | Description | |------|-------------| | 401 | Invalid or expired token |