Your key is stored locally. Get one from the developer dashboard.
Retrieve author profiles, their published books, and statistics.
/v1/authors/{id}
Get detailed information about an author, including bio, social links, and aggregated stats.
{ "data": { "id": "...", "name": "Jane Smith", "bio": "...", "stats": { "totalBooks": 12 } } }
/v1/authors/{id}/books
List all books by a specific author, with pagination and sorting.
{ "data": [...], "meta": { "page": 1, "total": 12 } }