Returns a page of conversations (direct or group) for the user.
Parameters
cursor
string
Optional
No description available.
kind
string
Optional
Filter by conversation kind.
limit
integer
Optional
No description available.
readState
string
Optional
No description available.
status
string
Optional
Filter convos by their status. It is discouraged to call with "request" and preferred to call chat.bsky.convo.listConvoRequests, which also includes group join requests made by the user.
Output
Encoding
application/jsonconvos
array
Required
No description available.
cursor
string
Optional
No description available.
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": [
"convos"
],
"properties": {
"convos": {
"type": "array",
"items": {
"ref": "chat.bsky.convo.defs#convoView",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"kind": {
"type": "string",
"description": "Filter by conversation kind.",
"knownValues": [
"direct",
"group"
]
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"status": {
"type": "string",
"description": "Filter convos by their status. It is discouraged to call with \"request\" and preferred to call chat.bsky.convo.listConvoRequests, which also includes group join requests made by the user.",
"knownValues": [
"request",
"accepted"
]
},
"readState": {
"type": "string",
"knownValues": [
"unread"
]
}
}
},
"description": "Returns a page of conversations (direct or group) for the user."
}