Backfill in-progress. Some lexicons and records may be missing or incomplete.

app.bsky.feed.describeFeedGenerator

bsky-lexicons.bsky.social

Documentation

main query

Get information about a feed generator, including policies and offered feed URIs. Does not require auth; implemented by Feed Generator services (not App View).

Output

Encodingapplication/json
did stringdid Required

A decentralized identifier (DID).

feeds array Required

No description provided.

links ref#links Optional

No description provided.

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)
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "did",
        "feeds"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "feeds": {
          "type": "array",
          "items": {
            "ref": "#feed",
            "type": "ref"
          }
        },
        "links": {
          "ref": "#links",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Get information about a feed generator, including policies and offered feed URIs. Does not require auth; implemented by Feed Generator services (not App View)."
}
feed object

Properties

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": [
    "uri"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri"
    }
  }
}
links object

Properties

privacyPolicy string Optional

No description provided.

termsOfService string Optional

No description provided.

View raw schema
{
  "type": "object",
  "properties": {
    "privacyPolicy": {
      "type": "string"
    },
    "termsOfService": {
      "type": "string"
    }
  }
}

Lexicon Garden

@