router_file
stringclasses 12
values | method
stringclasses 5
values | path
stringlengths 3
258
| function_name
stringlengths 5
34
| response_model
stringclasses 1
value | prefix
stringclasses 12
values |
|---|---|---|---|---|---|
auth.py
|
POST
|
/register
|
register
|
Token
|
/api/auth
|
auth.py
|
POST
|
/token
|
login
|
Token
|
/api/auth
|
auth.py
|
POST
|
/login
|
login_alt
| null |
/api/auth
|
auth.py
|
GET
|
/me
|
read_users_me
| null |
/api/auth
|
auth.py
|
POST
|
/logout
|
logout
| null |
/api/auth
|
auth.py
|
POST
|
/refresh
|
refresh_token
| null |
/api/auth
|
stocks.py
|
GET
|
", response_model=List[StockResponse])
@api_cache(data_type=
|
get_stocks
| null |
/api/stocks
|
stocks.py
|
GET
|
/search
|
search_stocks
| null |
/api/stocks
|
stocks.py
|
GET
|
/sectors
|
get_sectors
| null |
/api/stocks
|
stocks.py
|
GET
|
/sectors/summary
|
get_sector_summary
| null |
/api/stocks
|
stocks.py
|
GET
|
/top-performers
|
get_top_performers
| null |
/api/stocks
|
stocks.py
|
GET
|
/{symbol}
|
get_stock_detail
| null |
/api/stocks
|
stocks.py
|
GET
|
/{symbol}/quote
|
get_stock_history
| null |
/api/stocks
|
stocks.py
|
GET
|
/{symbol}/statistics
|
get_stock_statistics
| null |
/api/stocks
|
stocks.py
|
POST
|
/{symbol}/watchlist
|
add_to_watchlist
| null |
/api/stocks
|
stocks.py
|
DELETE
|
/{symbol}/watchlist
|
remove_from_watchlist
| null |
/api/stocks
|
analysis.py
|
POST
|
/analyze
|
batch_analysis
| null |
/api/analysis
|
analysis.py
|
POST
|
/compare
|
compare_stocks
| null |
/api/analysis
|
analysis.py
|
GET
|
/indicators/{symbol}
|
get_technical_indicators
| null |
/api/analysis
|
analysis.py
|
GET
|
/sentiment/{symbol}
|
get_sentiment_analysis
| null |
/api/analysis
|
cache_management.py
|
GET
|
/metrics
|
get_cache_metrics
| null |
/api/cache_management
|
cache_management.py
|
GET
|
/cost-analysis
|
get_cost_analysis
| null |
/api/cache_management
|
cache_management.py
|
GET
|
/performance-report
|
get_performance_report
| null |
/api/cache_management
|
cache_management.py
|
GET
|
/api-usage
|
get_api_usage
| null |
/api/cache_management
|
cache_management.py
|
POST
|
/invalidate
|
invalidate_cache
| null |
/api/cache_management
|
cache_management.py
|
POST
|
/warm
|
warm_cache
| null |
/api/cache_management
|
cache_management.py
|
GET
|
/health
|
get_cache_health
| null |
/api/cache_management
|
cache_management.py
|
GET
|
/statistics
|
get_cache_statistics
| null |
/api/cache_management
|
health.py
|
GET
|
")
async def health_check() -> Dict:
|
readiness_check
| null |
/api/health
|
health.py
|
GET
|
/metrics
|
get_metrics
| null |
/api/health
|
health.py
|
GET
|
/liveness
|
liveness_check
| null |
/api/health
|
health.py
|
GET
|
/startup
|
startup_check
| null |
/api/health
|
stocks_legacy.py
|
GET
|
", response_model=List[Stock])
async def get_stocks(
sector: Optional[str] = None,
min_market_cap: Optional[float] = None,
max_market_cap: Optional[float] = None,
limit: int = Query(100, le=500),
offset: int = 0,
sort_by: str = Query(
|
get_sectors
| null |
/api/stocks_legacy
|
stocks_legacy.py
|
GET
|
/search
|
search_stocks
| null |
/api/stocks_legacy
|
stocks_legacy.py
|
GET
|
/{symbol}
|
get_stock_detail
| null |
/api/stocks_legacy
|
stocks_legacy.py
|
GET
|
/{symbol}/quote
|
get_stock_quote
| null |
/api/stocks_legacy
|
stocks_legacy.py
|
GET
|
/{symbol}/history
|
get_stock_history
| null |
/api/stocks_legacy
|
stocks_legacy.py
|
POST
|
/{symbol}/watchlist
|
add_to_watchlist
| null |
/api/stocks_legacy
|
stocks_legacy.py
|
DELETE
|
/{symbol}/watchlist
|
remove_from_watchlist
| null |
/api/stocks_legacy
|
monitoring.py
|
GET
|
/health
|
health_check
| null |
/api/monitoring
|
monitoring.py
|
GET
|
/metrics/cost
|
get_cost_metrics
| null |
/api/monitoring
|
monitoring.py
|
GET
|
/grafana/dashboards
|
get_dashboard_links
| null |
/api/monitoring
|
monitoring.py
|
POST
|
/grafana/annotation
|
create_annotation
| null |
/api/monitoring
|
monitoring.py
|
POST
|
/alerts/test
|
test_alert_system
| null |
/api/monitoring
|
monitoring.py
|
GET
|
/metrics/api-usage
|
get_api_usage_metrics
| null |
/api/monitoring
|
recommendations.py
|
GET
|
/daily
|
get_recommendations
| null |
/api/recommendations
|
recommendations.py
|
GET
|
/{recommendation_id}
|
get_recommendation_detail
| null |
/api/recommendations
|
recommendations.py
|
POST
|
/filter
|
filter_recommendations
| null |
/api/recommendations
|
recommendations.py
|
GET
|
/portfolio/{portfolio_id}
|
get_portfolio_recommendations
| null |
/api/recommendations
|
recommendations.py
|
GET
|
/performance/track
|
track_recommendation_performance
| null |
/api/recommendations
|
recommendations.py
|
POST
|
/alerts/settings
|
update_alert_settings
| null |
/api/recommendations
|
recommendations.py
|
GET
|
/alerts/history
|
get_alert_history
| null |
/api/recommendations
|
recommendations.py
|
POST
|
/backtest
|
backtest_strategy
| null |
/api/recommendations
|
recommendations.py
|
GET
|
/trending
|
get_trending_recommendations
| null |
/api/recommendations
|
agents.py
|
POST
|
/analyze
|
batch_analyze_stocks
| null |
/api/agents
|
agents.py
|
GET
|
/budget-status
|
get_budget_status
| null |
/api/agents
|
agents.py
|
GET
|
/capabilities
|
get_agent_capabilities
| null |
/api/agents
|
agents.py
|
GET
|
/status
|
get_engine_status
| null |
/api/agents
|
agents.py
|
POST
|
/test-connectivity
|
test_agent_connectivity
| null |
/api/agents
|
agents.py
|
POST
|
/set-analysis-mode
|
set_analysis_mode
| null |
/api/agents
|
agents.py
|
GET
|
/selection-stats
|
get_agent_selection_stats
| null |
/api/agents
|
admin.py
|
GET
|
/health
|
get_system_health
| null |
/api/admin
|
admin.py
|
GET
|
/users
|
list_users
| null |
/api/admin
|
admin.py
|
GET
|
/users/{user_id}
|
get_user_details
| null |
/api/admin
|
admin.py
|
PATCH
|
/users/{user_id}
|
update_user
| null |
/api/admin
|
admin.py
|
DELETE
|
/users/{user_id}
|
delete_user
| null |
/api/admin
|
admin.py
|
GET
|
/analytics/api-usage
|
get_api_usage_stats
| null |
/api/admin
|
admin.py
|
GET
|
/metrics
|
get_system_metrics
| null |
/api/admin
|
admin.py
|
GET
|
/jobs
|
list_background_jobs
| null |
/api/admin
|
admin.py
|
POST
|
/jobs/{job_id}/cancel
|
cancel_job
| null |
/api/admin
|
admin.py
|
POST
|
/jobs/{job_id}/retry
|
retry_job
| null |
/api/admin
|
admin.py
|
GET
|
/config
|
get_configuration
| null |
/api/admin
|
admin.py
|
PATCH
|
/config
|
update_configuration
| null |
/api/admin
|
admin.py
|
GET
|
/audit-logs
|
get_audit_logs
| null |
/api/admin
|
admin.py
|
POST
|
/announcements
|
create_announcement
| null |
/api/admin
|
admin.py
|
GET
|
/announcements
|
list_announcements
| null |
/api/admin
|
admin.py
|
POST
|
/export
|
export_data
| null |
/api/admin
|
admin.py
|
POST
|
/command
|
execute_system_command
| null |
/api/admin
|
admin.py
|
POST
|
/maintenance/enable
|
enable_maintenance_mode
| null |
/api/admin
|
admin.py
|
POST
|
/maintenance/disable
|
disable_maintenance_mode
| null |
/api/admin
|
portfolio.py
|
GET
|
/summary
|
calculate_portfolio_risk_score
| null |
/api/portfolio
|
portfolio.py
|
GET
|
/{portfolio_id}
|
calculate_real_performance_metrics
| null |
/api/portfolio
|
portfolio.py
|
POST
|
/{portfolio_id}/positions
|
add_position
| null |
/api/portfolio
|
portfolio.py
|
DELETE
|
/{portfolio_id}/positions/{symbol}
|
remove_position
| null |
/api/portfolio
|
portfolio.py
|
GET
|
/{portfolio_id}/transactions
|
get_transactions
| null |
/api/portfolio
|
portfolio.py
|
GET
|
/{portfolio_id}/performance
|
get_portfolio_performance
| null |
/api/portfolio
|
portfolio.py
|
POST
|
/{portfolio_id}/analyze
|
analyze_portfolio
| null |
/api/portfolio
|
portfolio.py
|
POST
|
/{portfolio_id}/rebalance
|
rebalance_portfolio
| null |
/api/portfolio
|
portfolio.py
|
GET
|
/{portfolio_id}/watchlist
|
get_watchlist
| null |
/api/portfolio
|
portfolio.py
|
POST
|
/{portfolio_id}/watchlist
|
add_to_watchlist
| null |
/api/portfolio
|
portfolio.py
|
PUT
|
/{portfolio_id}/settings
|
update_portfolio_settings
| null |
/api/portfolio
|
websocket.py
|
POST
|
/trigger/alert
|
trigger_alert
| null |
/api/websocket
|
websocket.py
|
POST
|
/trigger/news
|
trigger_news_broadcast
| null |
/api/websocket
|
websocket.py
|
GET
|
/connections
|
get_active_connections
| null |
/api/websocket
|
README.md exists but content is empty.
- Downloads last month
- 4