Get a list of livestream segments for a user
Parameters
Output
Encoding
application/jsonsegments
array
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",
"properties": {
"segments": {
"type": "array",
"items": {
"ref": "place.stream.segment#segmentView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"userDID"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"before": {
"type": "string",
"format": "datetime"
},
"userDID": {
"type": "string",
"format": "did",
"description": "The DID of the potentially-following user"
}
}
},
"description": "Get a list of livestream segments for a user"
}