app.standard-reader.getUserFollowStatus

standard-reader.app

Documentation

Whether the subject reader follows a user.

main query

Whether the subject reader follows a user.

Parameters

did string did Optional

DID of the reader whose follow status is being checked (defaults to the authed reader).

subject string did Required

DID of the user being followed.

Output

Encodingapplication/json
active boolean 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
DID of the reader whose follow status is being checked (defaults to the authed reader).
DID of the user being followed.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "active"
      ],
      "properties": {
        "active": {
          "type": "boolean"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "subject"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "DID of the reader whose follow status is being checked (defaults to the authed reader)."
      },
      "subject": {
        "type": "string",
        "format": "did",
        "description": "DID of the user being followed."
      }
    }
  },
  "description": "Whether the subject reader follows a user."
}

Lexicon Garden

@