app.didpic.feed.getLikes

lexicons.didpic.app

Documentation

Accounts that have liked a post or comment, newest first.

main query

Accounts that have liked a post or comment, newest first.

Parameters

cursor string Optional

No description available.

limit integer Optional

No description available.

uri string at-uri Required

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

Output

Encodingapplication/json
cursor string Optional

No description available.

likes array Required

No description available.

uri stringat-uri Required

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

Errors

SubjectNotFound
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
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "SubjectNotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "uri",
        "likes"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "likes": {
          "type": "array",
          "items": {
            "ref": "app.didpic.feed.defs#likeView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "uri"
    ],
    "properties": {
      "uri": {
        "type": "string",
        "format": "at-uri"
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "Accounts that have liked a post or comment, newest first."
}

Lexicon Garden

@