support.supper.comments.getCommentCounts

supper.support

Documentation

Return public Supper comment totals for a bounded set of site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll records. This count-only query is intended for feed cards and other batched summaries.

main query

Return public Supper comment totals for a bounded set of site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll records. This count-only query is intended for feed cards and other batched summaries.

Parameters

probes array of string Optional

Optional public comment record URIs whose presence in the valid counted thread set should be confirmed for cache reconciliation.

subjects array of string Required

AT URIs of site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll records whose public Supper comments should be counted. The service must reject subjects outside those collections.

Output

Encodingapplication/json
counts array 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 public comment record URIs whose presence in the valid counted thread set should be confirmed for cache reconciliation.
AT URIs of site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll records whose public Supper comments should be counted. The service must reject subjects outside those collections.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "counts"
      ],
      "properties": {
        "counts": {
          "type": "array",
          "items": {
            "ref": "#countView",
            "type": "ref"
          },
          "maxLength": 25
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "subjects"
    ],
    "properties": {
      "probes": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "at-uri"
        },
        "maxLength": 100,
        "description": "Optional public comment record URIs whose presence in the valid counted thread set should be confirmed for cache reconciliation."
      },
      "subjects": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "at-uri"
        },
        "maxLength": 25,
        "minLength": 1,
        "description": "AT URIs of site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll records whose public Supper comments should be counted. The service must reject subjects outside those collections."
      }
    }
  },
  "description": "Return public Supper comment totals for a bounded set of site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll records. This count-only query is intended for feed cards and other batched summaries."
}
countView object

No description available.

Properties

countedUris array of stringat-uri Required

The requested probe URIs that currently belong to this subject's valid counted thread set.

maxLength: 100 items
subject string at-uri Required

Exact site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll AT URI represented by this count.

total integer Required

No description available.

minimum: 0
View raw schema
{
  "type": "object",
  "required": [
    "subject",
    "total",
    "countedUris"
  ],
  "properties": {
    "total": {
      "type": "integer",
      "minimum": 0
    },
    "subject": {
      "type": "string",
      "format": "at-uri",
      "description": "Exact site.standard.document, support.supper.feed.post, fm.plyr.track, or support.supper.poll.poll AT URI represented by this count."
    },
    "countedUris": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "at-uri"
      },
      "maxLength": 100,
      "description": "The requested probe URIs that currently belong to this subject's valid counted thread set."
    }
  }
}

Lexicon Garden

@