Get a list of posts that use a given audio (by AT-URI).
Parameters
Output
Encoding
application/jsonaudio
refso.sprk.sound.defs#audioView
Optional
No description available.
cursor
string
Optional
No description available.
posts
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": [
"posts"
],
"properties": {
"audio": {
"ref": "so.sprk.sound.defs#audioView",
"type": "ref"
},
"posts": {
"type": "array",
"items": {
"ref": "so.sprk.feed.defs#postView",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "Audio AT-URI to find referencing posts for."
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Get a list of posts that use a given audio (by AT-URI)."
}