Skip to main content
The /api/amazon/author endpoint fetches an author’s Amazon profile page by their author ASIN — returning their biography, profile image, and a paginated list of their published books with prices, ratings, and co-author information. Use this endpoint to build author spotlight pages, bookstore catalogs, or reading recommendation tools.
Author ASINs look like product ASINs (10-character alphanumeric) but resolve to author profile pages on Amazon. You can find an author’s ASIN in their Amazon Author Page URL, e.g. amazon.com/author/B00123ABCD.

Request


GET https://api.glade.dev/api/amazon/author
string
required
The author’s Amazon Author Page ASIN — a 10-character alphanumeric identifier. You can find it in the author’s Amazon profile URL, e.g. amazon.com/author/B00123ABCD.
string
default:"US"
The Amazon marketplace to query. Accepted values: US, UK, CA, DE, FR, IT, ES, AU, IN, MX, BR, JP, PL. Defaults to US when omitted.
integer
The page number of the author’s book listings to return. Must be 1 or greater. Omit to retrieve the first page.

Response

A successful response returns data.amazonAuthor.
object

Example response

Curl example

Error handling

If a required parameter is missing or invalid, the API returns a non-2xx status code with a JSON error body. Always check the success field before reading data.

Example error response