Get the total number of games a user has published.
Parameters
Output
Encoding
application/jsoncount
integer
Required
Total number of games this user has published.
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": [
"count"
],
"properties": {
"count": {
"type": "integer",
"description": "Total number of games this user has published."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"description": "The DID of the user whose game count to retrieve."
}
}
},
"description": "Get the total number of games a user has published."
}