Your API Key

Your key is stored locally. Get one from the developer dashboard.

Authors API

Retrieve author profiles, their published books, and statistics.

GET/v1/authors/{id}Basic+

Get detailed information about an author, including bio, social links, and aggregated stats.

Parameters

NameTypeDefaultDescription
id*uuidAuthor unique identifier
includeBooksbooleanfalseInclude list of author’s books
limitinteger5Number of books to return (if includeBooks=true)

Response Example

{ "data": { "id": "...", "name": "Jane Smith", "bio": "...", "stats": { "totalBooks": 12 } } }
GET/v1/authors/{id}/booksBasic+

List all books by a specific author, with pagination and sorting.

Parameters

NameTypeDefaultDescription
id*uuidAuthor unique identifier
pageinteger1Page number
limitinteger20Items per page (max 50)
sortstringpublished_atSort by: published_at, rating, sales_count
orderstringdescasc or desc

Response Example

{ "data": [...], "meta": { "page": 1, "total": 12 } }