social.respawn.feed.getActivity

respawn.social

Documentation

Activity events involving an actor, newest first. `filter` selects the slice.

main query

Activity events involving an actor, newest first. `filter` selects the slice.

Parameters

actor string did Required

The account the feed is about, which is not necessarily the viewer.

cursor string Optional

No description available.

filter string Optional

author: records the actor wrote. following: records written by the accounts the actor follows. incoming: records by others naming the actor as their subject. all: the union of the three.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

feed 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
The account the feed is about, which is not necessarily the viewer.
author: records the actor wrote. following: records written by the accounts the actor follows. incoming: records by others naming the actor as their subject. all: the union of the three.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "feed"
      ],
      "properties": {
        "feed": {
          "type": "array",
          "items": {
            "ref": "#feedItem",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "actor"
    ],
    "properties": {
      "actor": {
        "type": "string",
        "format": "did",
        "description": "The account the feed is about, which is not necessarily the viewer."
      },
      "limit": {
        "type": "integer",
        "default": 30,
        "maximum": 50,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "filter": {
        "type": "string",
        "default": "all",
        "description": "author: records the actor wrote. following: records written by the accounts the actor follows. incoming: records by others naming the actor as their subject. all: the union of the three.",
        "knownValues": [
          "all",
          "author",
          "incoming",
          "following"
        ]
      }
    }
  },
  "description": "Activity events involving an actor, newest first. `filter` selects the slice."
}
feedItem object

One activity event. `type` selects which optional fields are present.

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

did string did Required

The actor who performed the action.

subject string did Optional

Present on follow: the account followed.

type string Required

No description available.

Known values: backlogAdd, follow
uri string at-uri Required

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

View raw schema
{
  "type": "object",
  "required": [
    "type",
    "uri",
    "did",
    "createdAt"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did",
      "description": "The actor who performed the action."
    },
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "game": {
      "ref": "social.respawn.defs#gameRef",
      "type": "ref",
      "description": "Present on backlogAdd."
    },
    "type": {
      "type": "string",
      "knownValues": [
        "backlogAdd",
        "follow"
      ]
    },
    "cover": {
      "ref": "social.respawn.defs#cover",
      "type": "ref",
      "description": "Present on backlogAdd."
    },
    "subject": {
      "type": "string",
      "format": "did",
      "description": "Present on follow: the account followed."
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    }
  },
  "description": "One activity event. `type` selects which optional fields are present."
}

Lexicon Garden

@