Get whether or not user A is following user B.
Parameters
Output
Encoding
application/jsonfollow
refcom.atproto.repo.strongRef
Optional
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"properties": {
"follow": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"userDID",
"subjectDID"
],
"properties": {
"userDID": {
"type": "string",
"format": "did",
"description": "The DID of the potentially-following user"
},
"subjectDID": {
"type": "string",
"format": "did",
"description": "The DID of the user potentially being followed"
}
}
},
"description": "Get whether or not user A is following user B."
}