buzz.bookhive.getAuthorBooks

bookhive.buzz

Documentation

Get books by a specific author.

main query

Get books by a specific author.

Parameters

author string Required

The author name to look up

limit integer Optional

No description available.

page integer Optional

No description available.

sort string Optional

Sort order. Defaults to popularity.

Output

Encodingapplication/json
author string Required

No description available.

books array Required

No description available.

page integer Optional

No description available.

totalBooks integer Required

No description available.

totalPages integer Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
The author name to look up
Sort order. Defaults to popularity.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "author",
        "books",
        "totalBooks",
        "totalPages"
      ],
      "properties": {
        "page": {
          "type": "integer"
        },
        "books": {
          "type": "array",
          "items": {
            "ref": "buzz.bookhive.hiveBook#main",
            "type": "ref"
          }
        },
        "author": {
          "type": "string"
        },
        "totalBooks": {
          "type": "integer"
        },
        "totalPages": {
          "type": "integer"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "author"
    ],
    "properties": {
      "page": {
        "type": "integer",
        "default": 1,
        "minimum": 1
      },
      "sort": {
        "type": "string",
        "description": "Sort order. Defaults to popularity.",
        "knownValues": [
          "popularity",
          "reviews"
        ]
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "author": {
        "type": "string",
        "description": "The author name to look up"
      }
    }
  },
  "description": "Get books by a specific author."
}

Lexicon Garden

@