List all books the authenticated user has access to
cURL
curl --request GET \ --url https://api.slant.app/v1/books \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "abc123xyz", "name": "John's Book", "role": "principal", "users": [ { "id": "abc123xyz", "email": "user@example.com", "first_name": "John", "last_name": "Doe", "role": "contributor" } ], "tiers": [ { "value": 1, "label": "A-tier" } ], "teams": [ { "id": "<string>", "name": "Advisory Team" } ] } ], "pagination": { "current_page": 1, "total_pages": 10, "total_count": 100, "per_page": 25 } }
OAuth 2.0 Bearer Token from Clerk authentication
Page number
Items per page (1-100, default: 25). Values over 100 will be clamped to 100.
1 <= x <= 100
successful
Show child attributes