Get saves within a collection, hydrated with collection details, CDN image URLs, and metadata. Auth is optional; if provided, viewer-specific state is included in the collection and save views.
Parameters
Output
Encoding
application/jsoncollection
refis.currents.feed.defs#collectionView
Required
No description available.
cursor
string
Optional
No description available.
saves
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": [
"collection",
"saves"
],
"properties": {
"saves": {
"type": "array",
"items": {
"ref": "is.currents.feed.defs#saveView",
"type": "ref"
}
},
"cursor": {
"type": "string"
},
"collection": {
"ref": "is.currents.feed.defs#collectionView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"collection"
],
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"collection": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the collection record to fetch saves from."
}
}
},
"description": "Get saves within a collection, hydrated with collection details, CDN image URLs, and metadata. Auth is optional; if provided, viewer-specific state is included in the collection and save views."
}