Overview
search_marketplace queries the QuantX model registry and returns a ranked list of models matching the specified criteria. Use it to discover signals and strategies before subscribing.
Auth is not required — this tool is publicly accessible.
Parameters
Free-text search query. Supports natural language.Examples:
"momentum US equities", "mean reversion crypto", "low volatility factor bonds"Optional structured filters to narrow results.
Ranking criterion. Accepted values:
| Value | Description |
|---|---|
"relevance" | Default — text + semantic match score |
"sharpe" | Backtested Sharpe ratio (descending) |
"subscribers" | Popularity by subscriber count |
"published_at" | Most recently published first |
Returns
| Field | Description |
|---|---|
total | Total number of matching models |
results[].model_id | Unique model identifier — use with get_model, subscribe_to_model, run_signal |
results[].sharpe_ratio | Annualized Sharpe ratio from backtests |
results[].max_drawdown | Maximum drawdown from backtests |
results[].subscribers | Number of active subscribers |
Example
Next Step
Pass amodel_id from the results to get_model for full details, or directly to run_signal if already subscribed.