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

app.bsky.feed.getFeedGenerator

bsky-lexicons.bsky.social

Documentation

main query

Get information about a feed generator. Implemented by AppView.

Parameters

feed string at-uri Required

AT-URI of the feed generator record.

Output

Encodingapplication/json
isOnline boolean Required

Indicates whether the feed generator service has been online recently, or else seems to be inactive.

isValid boolean Required

Indicates whether the feed generator service is compatible with the record declaration.

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
AT-URI of the feed generator record.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "view",
        "isOnline",
        "isValid"
      ],
      "properties": {
        "view": {
          "ref": "app.bsky.feed.defs#generatorView",
          "type": "ref"
        },
        "isValid": {
          "type": "boolean",
          "description": "Indicates whether the feed generator service is compatible with the record declaration."
        },
        "isOnline": {
          "type": "boolean",
          "description": "Indicates whether the feed generator service has been online recently, or else seems to be inactive."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "feed"
    ],
    "properties": {
      "feed": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the feed generator record."
      }
    }
  },
  "description": "Get information about a feed generator. Implemented by AppView."
}

Lexicon Garden

@