app.bsky.feed.describeFeedGenerator

lexicon.store View official

Documentation

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

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 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)
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "did",
        "feeds"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "feeds": {
          "type": "array",
          "items": {
            "ref": "app.bsky.feed.describeFeedGenerator#feed",
            "type": "ref"
          }
        },
        "links": {
          "ref": "app.bsky.feed.describeFeedGenerator#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

No description available.

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

No description available.

Properties

privacyPolicy string Optional

No description available.

termsOfService string Optional

No description available.

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

Lexicon Garden

@