Skip to content

app.bsky.graph.getStarterPacksWithMembership

Lexicon Version: 1

Type: query

Enumerates the starter packs created by the session user, and includes membership information about actor in those starter packs. Requires auth.

Parameters:

NameTypeReq’dDescriptionConstraints
actorstringThe account (actor) to check for membership.Format: at-identifier
limitintegerMin: 1
Max: 100
Default: 50
cursorstring
Output:
  • Encoding: application/json
  • Schema:

Schema Type: object

NameTypeReq’dDescriptionConstraints
cursorstring
starterPacksWithMembershipArray of #starterPackWithMembership

Type: object

A starter pack and an optional list item indicating membership of a target user to that starter pack.

Properties:

NameTypeReq’dDescriptionConstraints
starterPackapp.bsky.graph.defs#starterPackView
listItemapp.bsky.graph.defs#listItemView

{
"lexicon": 1,
"id": "app.bsky.graph.getStarterPacksWithMembership",
"defs": {
"main": {
"type": "query",
"description": "Enumerates the starter packs created by the session user, and includes membership information about `actor` in those starter packs. Requires auth.",
"parameters": {
"type": "params",
"required": [
"actor"
],
"properties": {
"actor": {
"type": "string",
"format": "at-identifier",
"description": "The account (actor) to check for membership."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 50
},
"cursor": {
"type": "string"
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": [
"starterPacksWithMembership"
],
"properties": {
"cursor": {
"type": "string"
},
"starterPacksWithMembership": {
"type": "array",
"items": {
"type": "ref",
"ref": "#starterPackWithMembership"
}
}
}
}
}
},
"starterPackWithMembership": {
"description": "A starter pack and an optional list item indicating membership of a target user to that starter pack.",
"type": "object",
"required": [
"starterPack"
],
"properties": {
"starterPack": {
"type": "ref",
"ref": "app.bsky.graph.defs#starterPackView"
},
"listItem": {
"type": "ref",
"ref": "app.bsky.graph.defs#listItemView"
}
}
}
}
}