buzz.bookhive.getProfile

bookhive.buzz

Documentation

Get a profile's info. Does not require authentication.

main query

Get a profile's info. Does not require authentication.

Parameters

did string Optional

The user's DID to get the profile of

handle string Optional

The user's handle to get the profile of

Output

Encodingapplication/json
activity array Required

The user's activity

books array Required

All books in the user's library

friendActivity array Required

The user's friend activity

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 user's DID to get the profile of
The user's handle to get the profile of
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "books",
        "profile",
        "activity",
        "friendActivity"
      ],
      "properties": {
        "books": {
          "type": "array",
          "items": {
            "ref": "buzz.bookhive.defs#userBook",
            "type": "ref"
          },
          "description": "All books in the user's library"
        },
        "profile": {
          "ref": "buzz.bookhive.defs#profile",
          "type": "ref",
          "description": "The user's profile"
        },
        "activity": {
          "type": "array",
          "items": {
            "ref": "buzz.bookhive.defs#activity",
            "type": "ref"
          },
          "description": "The user's activity"
        },
        "friendActivity": {
          "type": "array",
          "items": {
            "ref": "buzz.bookhive.defs#userBook",
            "type": "ref"
          },
          "description": "The user's friend activity"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "did": {
        "type": "string",
        "description": "The user's DID to get the profile of"
      },
      "handle": {
        "type": "string",
        "description": "The user's handle to get the profile of"
      }
    }
  },
  "description": "Get a profile's info. Does not require authentication."
}

Lexicon Garden

@