pub.chive.collection.getFollowStatus

chive.pub

Documentation

Check if a user follows a collection (via network.cosmik.follow records)

main query

Check if a user follows a collection (via network.cosmik.follow records)

Parameters

followerDid string Required

DID of the potential follower

subject string Required

AT-URI of the collection

Output

Encodingapplication/json
followUri string Required

AT-URI of the follow record, or empty string if not following

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 potential follower
AT-URI of the collection
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "followUri"
      ],
      "properties": {
        "followUri": {
          "type": "string",
          "description": "AT-URI of the follow record, or empty string if not following"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "followerDid",
      "subject"
    ],
    "properties": {
      "subject": {
        "type": "string",
        "description": "AT-URI of the collection"
      },
      "followerDid": {
        "type": "string",
        "description": "DID of the potential follower"
      }
    }
  },
  "description": "Check if a user follows a collection (via network.cosmik.follow records)"
}

Lexicon Garden

@