social.coves.actor.getComments

coves.social

Documentation

Get a user's comments for their profile page.

main query

Get a user's comments for their profile page.

Parameters

actor string at-identifier Required

DID or handle of the user

community string at-identifier Optional

Filter to comments in a specific community

cursor string Optional

No description available.

limit integer Optional

No description available.

Output

Encodingapplication/json
comments array Required

No description available.

cursor string Optional

No description available.

Errors

NotFound Actor not found
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 or handle of the user
Filter to comments in a specific community
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "NotFound",
      "description": "Actor not found"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "comments"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "maxLength": 500
        },
        "comments": {
          "type": "array",
          "items": {
            "ref": "social.coves.community.comment.defs#commentView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "actor"
    ],
    "properties": {
      "actor": {
        "type": "string",
        "format": "at-identifier",
        "description": "DID or handle of the user"
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string",
        "maxLength": 500
      },
      "community": {
        "type": "string",
        "format": "at-identifier",
        "description": "Filter to comments in a specific community"
      }
    }
  },
  "description": "Get a user's comments for their profile page."
}

Lexicon Garden

@