Full-text search over indexed articles.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
items
array
Required
No description available.
query
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": [
"query",
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"ref": "app.standard-reader.defs#documentView",
"type": "ref"
}
},
"query": {
"type": "string"
},
"cursor": {
"type": "string",
"nullable": true
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"q"
],
"properties": {
"q": {
"type": "string"
},
"limit": {
"type": "integer",
"default": 20,
"maximum": 50,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Full-text search over indexed articles."
}