an attempt to make a lightweight, easily self-hostable, scoped bluesky appview

party.whey.app.bsky.feed.getListFeedPartial#

{
  "lexicon": 1,
  "id": "party.whey.app.bsky.feed.getListFeedPartial",
  "defs": {
    "main": {
      "type": "query",
      "description": "Get a feed of recent posts from a list (posts and reposts from any actors on the list). Does not require auth.",
      "parameters": {
        "type": "params",
        "required": [
          "list"
        ],
        "properties": {
          "list": {
            "type": "string",
            "format": "at-uri",
            "description": "Reference (AT-URI) to the list record."
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 100,
            "default": 50
          },
          "cursor": {
            "type": "string"
          }
        }
      },
      "output": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": [
            "feed"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "feed": {
              "type": "array",
              "items": {
                "type": "ref",
                "ref": "party.whey.app.bsky.feed.defs#feedViewPostRef"
              }
            }
          }
        }
      },
      "errors": [
        {
          "name": "UnknownList"
        }
      ]
    }
  }
}