paradex_filters_model
Obtain schema details to construct accurate data filters, enabling precise data retrieval. Learn available fields, data types, and syntax for building complex JMESPath queries or multi-criteria expressions.
Instructions
Get detailed schema information to build precise data filters.
Use this tool when you need to:
- Understand exactly what fields are available for filtering
- Learn the data types and formats for specific fields
- Build complex JMESPath queries with correct syntax
- Create sophisticated filtering and sorting expressions
Knowing the exact schema helps you construct precise filters that
return exactly the data you need, avoiding trial and error.
Example use cases:
- Learning what fields exist in market data responses
- Finding the correct property names for filtering
- Understanding data types for numerical comparisons
- Building complex multi-criteria filters for large datasets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tool_name | Yes | The name of the tool to get the filters for. |
Input Schema (JSON Schema)
{
"properties": {
"tool_name": {
"description": "The name of the tool to get the filters for.",
"title": "Tool Name",
"type": "string"
}
},
"required": [
"tool_name"
],
"title": "get_filters_modelArguments",
"type": "object"
}