Get the list of streamers recommended by a user
Parameters
Output
Encoding
application/jsonrecommendations
array
Required
Ordered list of recommendations
userDID
stringdid
Optional
The user DID this recommendation is for
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": [
"recommendations"
],
"properties": {
"userDID": {
"type": "string",
"format": "did",
"description": "The user DID this recommendation is for"
},
"recommendations": {
"type": "array",
"items": {
"refs": [
"#livestreamRecommendation"
],
"type": "union"
},
"description": "Ordered list of recommendations"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"userDID"
],
"properties": {
"userDID": {
"type": "string",
"format": "did",
"description": "The DID of the user whose recommendations to fetch"
}
}
},
"description": "Get the list of streamers recommended by a user"
}