No description available.
Parameters
Output
Encoding
application/jsonartworks
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": [
"artworks"
],
"properties": {
"cursor": {
"type": "string"
},
"artworks": {
"type": "array",
"items": {
"ref": "app.bivri.feed.defs#artworkView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"sort": {
"type": "string",
"default": "latest",
"description": "Ordering of the returned artworks. 'latest' is reverse-chronological; 'popular' is by like count.",
"knownValues": [
"latest",
"popular"
]
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"description": "Opaque pagination cursor. Pass it back unchanged on the next request."
}
}
}
}