community.gifthood.feed.getListingInterests

gifthood.community

Documentation

List the interests ('raised hands') on a listing, each with the interested person's resolved identity. Rows are viewer-block-filtered, newest first; totalCount reflects all interests (the public count).

main query

List the interests ('raised hands') on a listing, each with the interested person's resolved identity. Rows are viewer-block-filtered, newest first; totalCount reflects all interests (the public count).

Parameters

cursor string Optional

Reserved for future pagination; ignored in this version.

did string did Required

DID of the account that created the listing.

limit integer Optional

Maximum rows to return.

rkey string Required

Record key of the listing.

Output

Encodingapplication/json
cursor string Optional

Reserved; not emitted in this version.

interests array Required

The interests, viewer-block-filtered, newest-first.

totalCount integer Required

Total interests on the listing (pre-block-filter — the public 'N interested' count).

Errors

NotAvailableToPublic The author hides their content from logged-out viewers; sign in to view.
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
Reserved for future pagination; ignored in this version.
DID of the account that created the listing.
Maximum rows to return.
Record key of the listing.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "NotAvailableToPublic",
      "description": "The author hides their content from logged-out viewers; sign in to view."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "totalCount",
        "interests"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "description": "Reserved; not emitted in this version."
        },
        "interests": {
          "type": "array",
          "items": {
            "ref": "community.gifthood.feed.defs#interestView",
            "type": "ref"
          },
          "description": "The interests, viewer-block-filtered, newest-first."
        },
        "totalCount": {
          "type": "integer",
          "description": "Total interests on the listing (pre-block-filter — the public 'N interested' count)."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did",
      "rkey"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "DID of the account that created the listing."
      },
      "rkey": {
        "type": "string",
        "description": "Record key of the listing."
      },
      "limit": {
        "type": "integer",
        "default": 100,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum rows to return."
      },
      "cursor": {
        "type": "string",
        "description": "Reserved for future pagination; ignored in this version."
      }
    }
  },
  "description": "List the interests ('raised hands') on a listing, each with the interested person's resolved identity. Rows are viewer-block-filtered, newest first; totalCount reflects all interests (the public count)."
}

Lexicon Garden

@