social.showcase.feed.getTimeline

lexicons.showcase.social

Documentation

Get personalized timeline feed (items from followed users + your own items). Requires authentication.

main query

Get personalized timeline feed (items from followed users + your own items). Requires authentication.

Parameters

cursor string Optional

Pagination cursor for infinite scroll

limit integer Optional

Number of items to load

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
Pagination cursor for infinite scroll
Number of items to load
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "feed"
      ],
      "properties": {
        "feed": {
          "type": "array",
          "items": {
            "ref": "social.showcase.defs#itemView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string",
          "maxLength": 512
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1,
        "description": "Number of items to load"
      },
      "cursor": {
        "type": "string",
        "maxLength": 512,
        "description": "Pagination cursor for infinite scroll"
      }
    }
  },
  "description": "Get personalized timeline feed (items from followed users + your own items). Requires authentication."
}

Lexicon Garden

@