cafe.dummy.lsky.getAuthorPosts

lsky-publisher.dummy.to

Documentation

Get posts by a specific person, filtered by type.

main query

Get posts by a specific person, filtered by type.

Parameters

actor string Required

DID or handle of the author.

cursor string Optional

No description available.

limit integer Optional

No description available.

type string Optional

Filter by post type.

Output

Encodingapplication/json
cursor string Optional

No description available.

posts array Required

No description available.

Errors

PersonNotFound
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
DID or handle of the author.
Filter by post type.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "PersonNotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "posts"
      ],
      "properties": {
        "posts": {
          "type": "array",
          "items": {
            "ref": "cafe.dummy.lsky.defs#postView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "actor"
    ],
    "properties": {
      "type": {
        "type": "string",
        "default": "post",
        "description": "Filter by post type.",
        "knownValues": [
          "post",
          "chirp"
        ]
      },
      "actor": {
        "type": "string",
        "description": "DID or handle of the author."
      },
      "limit": {
        "type": "integer",
        "default": 20,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "Get posts by a specific person, filtered by type."
}

Lexicon Garden

@