Get information about a feed generator. Implemented by AppView.
Parameters
Output
Encoding
application/jsonisOnline
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.
view
refapp.bsky.feed.defs#generatorView
Required
No description provided.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
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."
}