router_file stringclasses 15
values | method stringclasses 5
values | path stringlengths 3 64 | function_name stringlengths 4 29 | response_model stringclasses 0
values | prefix stringclasses 15
values |
|---|---|---|---|---|---|
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 | /cache/stats | get_cache_stats | 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 |
agents.py | POST | /analysis | run_agent_analysis | null | /api/agents |
agents.py | POST | /analyze | analyze_stock_with_agents | null | /api/agents |
agents.py | POST | /batch-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 |
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 |
auth.py | POST | /register | register | null | /api/auth |
auth.py | POST | /token | login | null | /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 |
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 |
gdpr.py | GET | /users/me/data-export/json | export_user_data_json | null | /api/gdpr |
gdpr.py | GET | /users/me/consent | get_consent_status | null | /api/gdpr |
gdpr.py | GET | /users/me/consent/history | get_consent_history | null | /api/gdpr |
gdpr.py | POST | /users/me/consent | record_consent | null | /api/gdpr |
gdpr.py | DELETE | /users/me/consent/{consent_type} | withdraw_consent | null | /api/gdpr |
gdpr.py | GET | /users/me/consent/{consent_type}/check | check_consent | null | /api/gdpr |
gdpr.py | GET | /users/me/retention-report | get_retention_report | null | /api/gdpr |
gdpr.py | POST | /admin/retention/enforce | enforce_retention_policies | null | /api/gdpr |
gdpr.py | POST | /users/me/anonymize | anonymize_user_data | null | /api/gdpr |
gdpr.py | GET | /users/me/audit | get_audit_trail | null | /api/gdpr |
health.py | GET | ")
async def health_check() -> ApiResponse[Dict[str, Any]]:
| 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 |
health.py | GET | /ping | ping | null | /api/health |
health.py | GET | /rate-limiter | rate_limiter_health | null | /api/health |
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 |
news.py | GET | /latest | get_latest_news | null | /api/news |
news.py | GET | /sentiment/{symbol} | get_news_sentiment | null | /api/news |
news.py | GET | /sources | get_news_sources | null | /api/news |
news.py | POST | /preferences | set_news_preferences | null | /api/news |
portfolio.py | GET | /summary | 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 |
portfolio_enhanced.py | POST | /create | create_portfolio | null | /api/portfolio_enhanced |
portfolio_enhanced.py | GET | /list | list_portfolios | null | /api/portfolio_enhanced |
portfolio_enhanced.py | GET | /{portfolio_id} | update_portfolio | null | /api/portfolio_enhanced |
portfolio_enhanced.py | POST | /orders | place_order | null | /api/portfolio_enhanced |
portfolio_enhanced.py | GET | /{portfolio_id}/orders | get_portfolio_orders | null | /api/portfolio_enhanced |
portfolio_enhanced.py | DELETE | /orders/{order_id} | cancel_order | null | /api/portfolio_enhanced |
portfolio_enhanced.py | GET | /{portfolio_id}/risk | get_rebalance_recommendations | null | /api/portfolio_enhanced |
portfolio_enhanced.py | GET | /{portfolio_id}/performance | get_portfolio_positions | null | /api/portfolio_enhanced |
recommendations.py | GET | /daily | get_daily_recommendations | null | /api/recommendations |
recommendations.py | GET | /list | 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 | POST | /alerts/settings | update_alert_settings | null | /api/recommendations |
recommendations.py | GET | /trending | get_trending_recommendations | null | /api/recommendations |
settings.py | GET | /preferences | get_preferences | null | /api/settings |
settings.py | PUT | /preferences | update_preferences | null | /api/settings |
settings.py | GET | /display | get_display_settings | null | /api/settings |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.