support.supper.feed.listCheers

supper.support

Documentation

Public actors who cheered a canonical post, with one entry per actor. No authentication is required; responses contain public records only.

main query

Public actors who cheered a canonical post, with one entry per actor. No authentication is required; responses contain public records only.

Parameters

additionalSubjects array of string Optional

Optional additional public subject to union with one primary subject. Actors are deduplicated across both. Clients must verify the relationship; this query does not assert that the subjects identify the same post. For counts, requires exactly one primary subject.

cursor string Optional

No description available.

limit integer Optional

No description available.

subject string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

Output

Encodingapplication/json
additionalSubjects array Optional

Echoes the additional subject included in the actor-deduplicated union, when requested.

cheers array Required

No description available.

cursor string Optional

No description available.

total integer 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
Optional additional public subject to union with one primary subject. Actors are deduplicated across both. Clients must verify the relationship; this query does not assert that the subjects identify the same post. For counts, requires exactly one primary subject.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "cheers",
        "total"
      ],
      "properties": {
        "total": {
          "type": "integer",
          "minimum": 0
        },
        "cheers": {
          "type": "array",
          "items": {
            "ref": "#cheerView",
            "type": "ref"
          },
          "maxLength": 100
        },
        "cursor": {
          "type": "string",
          "maxLength": 512
        },
        "additionalSubjects": {
          "type": "array",
          "items": {
            "type": "string",
            "format": "at-uri"
          },
          "maxLength": 1,
          "description": "Echoes the additional subject included in the actor-deduplicated union, when requested."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "subject"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string",
        "maxLength": 512
      },
      "subject": {
        "type": "string",
        "format": "at-uri"
      },
      "additionalSubjects": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "at-uri"
        },
        "maxLength": 1,
        "description": "Optional additional public subject to union with one primary subject. Actors are deduplicated across both. Clients must verify the relationship; this query does not assert that the subjects identify the same post. For counts, requires exactly one primary subject."
      }
    }
  },
  "description": "Public actors who cheered a canonical post, with one entry per actor. No authentication is required; responses contain public records only."
}
cheerView object

No description available.

Properties

author string did Required

A decentralized identifier (DID).

createdAt string datetime Required

Creation time of the represented Cheers record.

uri string at-uri Required

AT URI of the actor-owned public Cheers record represented by this entry.

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "author",
    "createdAt"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT URI of the actor-owned public Cheers record represented by this entry."
    },
    "author": {
      "type": "string",
      "format": "did"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime",
      "description": "Creation time of the represented Cheers record."
    }
  }
}

Lexicon Garden

@