Chronological newest-first feed of posts using a specific hashtag. Applies the viewer's label / age-gate filters server-side.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
feed
array
Required
No description available.
postCount
integer
Required
Total distinct records (posts + comments) using this tag.
tag
string
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": [
"tag",
"postCount",
"feed"
],
"properties": {
"tag": {
"type": "string"
},
"feed": {
"type": "array",
"items": {
"ref": "app.didpic.feed.defs#postView",
"type": "ref"
}
},
"cursor": {
"type": "string"
},
"postCount": {
"type": "integer",
"minimum": 0,
"description": "Total distinct records (posts + comments) using this tag."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"tag"
],
"properties": {
"tag": {
"type": "string",
"maxLength": 640,
"description": "Hashtag without the leading #. Lowercased server-side.",
"maxGraphemes": 64
},
"limit": {
"type": "integer",
"default": 30,
"maximum": 50,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Chronological newest-first feed of posts using a specific hashtag. Applies the viewer's label / age-gate filters server-side."
}