buzz.bookhive.getFeed

bookhive.buzz

Documentation

Get the activity feed. Requires authentication for the friends and tracking tabs.

main query

Get the activity feed. Requires authentication for the friends and tracking tabs.

Parameters

limit integer Optional

No description available.

page integer Optional

Page number for pagination

tab string Optional

Which feed tab to show. Defaults to friends.

Output

Encodingapplication/json
activities array Required

No description available.

hasMore boolean Required

No description available.

page integer Optional

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
Page number for pagination
Which feed tab to show. Defaults to friends.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "activities",
        "hasMore"
      ],
      "properties": {
        "page": {
          "type": "integer"
        },
        "hasMore": {
          "type": "boolean"
        },
        "activities": {
          "type": "array",
          "items": {
            "ref": "buzz.bookhive.getFeed#feedActivity",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "tab": {
        "type": "string",
        "description": "Which feed tab to show. Defaults to friends.",
        "knownValues": [
          "friends",
          "all",
          "tracking"
        ]
      },
      "page": {
        "type": "integer",
        "default": 1,
        "minimum": 1,
        "description": "Page number for pagination"
      },
      "limit": {
        "type": "integer",
        "default": 25,
        "maximum": 50,
        "minimum": 1
      }
    }
  },
  "description": "Get the activity feed. Requires authentication for the friends and tracking tabs."
}
feedActivity object

No description available.

Properties

authors string Required

No description available.

cover string Optional

No description available.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

hiveId string Required

No description available.

review string Optional

No description available.

stars integer Optional

No description available.

minimum: 1maximum: 10
status string Optional

No description available.

thumbnail string Required

No description available.

title string Required

No description available.

userAvatar string Optional

No description available.

userDid string Required

No description available.

userHandle string Optional

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "userDid",
    "hiveId",
    "title",
    "authors",
    "createdAt",
    "thumbnail"
  ],
  "properties": {
    "cover": {
      "type": "string"
    },
    "stars": {
      "type": "integer",
      "maximum": 10,
      "minimum": 1
    },
    "title": {
      "type": "string"
    },
    "hiveId": {
      "type": "string"
    },
    "review": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "authors": {
      "type": "string"
    },
    "userDid": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "thumbnail": {
      "type": "string"
    },
    "userAvatar": {
      "type": "string"
    },
    "userHandle": {
      "type": "string"
    }
  }
}

Lexicon Garden

@