app.didpic.feed.getTagFeed

lexicons.didpic.app

Documentation

Chronological newest-first feed of posts using a specific hashtag. Applies the viewer's label / age-gate filters server-side.

main query

Chronological newest-first feed of posts using a specific hashtag. Applies the viewer's label / age-gate filters server-side.

Parameters

cursor string Optional

No description available.

limit integer Optional

No description available.

tag string Required

Hashtag without the leading #. Lowercased server-side.

Output

Encodingapplication/json
cursor string Optional

No description available.

feed array Required

No description available.

postCount integer Required

Total distinct records (posts + comments) using this tag.

tag string 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
Hashtag without the leading #. Lowercased server-side.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "tag",
        "postCount",
        "feed"
      ],
      "properties": {
        "tag": {
          "type": "string"
        },
        "feed": {
          "type": "array",
          "items": {
            "ref": "app.didpic.feed.defs#postView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        },
        "postCount": {
          "type": "integer",
          "minimum": 0,
          "description": "Total distinct records (posts + comments) using this tag."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "tag"
    ],
    "properties": {
      "tag": {
        "type": "string",
        "maxLength": 640,
        "description": "Hashtag without the leading #. Lowercased server-side.",
        "maxGraphemes": 64
      },
      "limit": {
        "type": "integer",
        "default": 30,
        "maximum": 50,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "Chronological newest-first feed of posts using a specific hashtag. Applies the viewer's label / age-gate filters server-side."
}

Lexicon Garden

@