Get a user's lists with item counts. Optionally check which lists contain a specific game.
Parameters
Output
application/jsoncursor
string
Optional
No description available.
lists
array
Required
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": [
"lists"
],
"properties": {
"lists": {
"type": "array",
"items": {
"ref": "#userListView",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"description": "The DID of the user whose lists to retrieve."
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"gameUri": {
"type": "string",
"format": "at-uri",
"description": "If provided, each list includes a hasGame boolean indicating whether this game is in the list."
}
}
},
"description": "Get a user's lists with item counts. Optionally check which lists contain a specific game."
}