Get tag suggestions based on a query using the TaxoFolk system
Parameters
Output
Encoding
application/jsonsuggestions
array
Required
List of tag suggestions
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [],
"output": {
"schema": {
"type": "object",
"required": [
"suggestions"
],
"properties": {
"suggestions": {
"type": "array",
"items": {
"ref": "#tagSuggestion",
"type": "ref"
},
"description": "List of tag suggestions"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"q"
],
"properties": {
"q": {
"type": "string",
"maxLength": 100,
"minLength": 2,
"description": "Query string to get suggestions for"
},
"limit": {
"type": "integer",
"default": 10,
"maximum": 20,
"minimum": 1,
"description": "Maximum number of suggestions to return"
}
}
},
"description": "Get tag suggestions based on a query using the TaxoFolk system"
}