social.respawn.feed.getTimeline

respawn.social

Documentation

Activity from the accounts a viewer follows, newest first.

main query

Activity from the accounts a viewer follows, newest first.

Parameters

cursor string Optional

No description available.

limit integer Optional

No description available.

viewer string did Required

A decentralized identifier (DID).

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
A decentralized identifier (DID).
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": [
      "viewer"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 30,
        "maximum": 50,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "viewer": {
        "type": "string",
        "format": "did"
      }
    }
  },
  "description": "Activity from the accounts a viewer follows, newest first."
}
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

@