searchspring_parameter_guide
Understand and implement Searchspring API parameters effectively. Retrieve detailed guidance on parameter usage, best practices, and integration examples for APIs like search, autocomplete, and recommendations.
Instructions
Get detailed explanation for specific API parameters, their usage, and best practices
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api | Yes | The Searchspring API containing the parameter | |
parameter | Yes | The specific parameter to get guidance for (e.g., 'filters', 'sort', 'tags') |
Input Schema (JSON Schema)
{
"properties": {
"api": {
"description": "The Searchspring API containing the parameter",
"enum": [
"search",
"autocomplete",
"suggest",
"trending",
"recommendations",
"finder",
"beacon",
"bulk-index"
],
"type": "string"
},
"parameter": {
"description": "The specific parameter to get guidance for (e.g., 'filters', 'sort', 'tags')",
"type": "string"
}
},
"required": [
"api",
"parameter"
],
"type": "object"
}