API for Agentic Trading

Trade stocks and prediction markets with algorithms and autonomous AI agents using the Agent TradeDesk APIs.

Sign up for Free
NodeAsset Kalshi live agent campaigns terminal preview

Our Products

Powerful tools for every type of trader, developer, and institution.

Agent TradeDesk Express

Mobile-first AI Trading

Mobile app and API access give quick access to agentic trading decisions in prediction markets. Simulated trading included.

  • Mobile application
  • Prediction market intelligence
  • AI Head Trader recommendations
  • Simulated trading
  • API access
  • Real-time market monitoring
  • Portfolio tracking
Start Trading

Agent TradeDesk Pro

Professional Trading Intelligence

Everything in Express plus the complete institutional trading platform and deep intelligence for serious traders and developers.

  • Full desktop terminal and Command Center
  • Campaign intelligence and specialists
  • Explainable AI and Head Trader insights
  • Scanner, News and Market Replay
  • Historical analysis and performance tools
  • API access
  • Build your own agents and algorithms
  • ML/AI model development data
Start Trading

Private Cloud

Your Own Agent TradeDesk Tenant

Run your own inference cloud for stocks and prediction markets with isolated tenant infrastructure hosted by NodeAsset.

  • Pick your own markets and games to trade
  • Scale private cloud capacity as far as you want
  • Dedicated tenant environment
  • Run autonomous inferences on your own nodes
  • Hosted and managed by NodeAsset
  • Bring your own strategies, agents and workflows
Start Trading

Refresh Sports Opportunities

The Sports screen refreshes from GET /sports/opportunities. Pass limit to control row count and optional league to scope the visible opportunities.

Endpoint
https://api.nodeasset.com/sports/opportunities
Query params
limit, league
Returns
summary and ranked market opportunities
curl 'https://api.nodeasset.com/sports/opportunities?limit=25&league=KBO' \
  --header 'Authorization: Bearer YOUR_API_KEY'

Example Response

{
  "summary": {
    "generated_at": "2026-07-28T17:15:36.000Z",
    "markets": 25,
    "active_agents": 25,
    "open_positions": 4,
    "sports_visible_markets": 25
  },
  "markets": [
    {
      "rank": 1,
      "ticker": "KXKBOSPREAD-26JUL240530KIWKIA-KIW3",
      "league": "KBO",
      "display_matchup": "Kiwoom Heroes vs Kia Tigers",
      "display_bet_summary": "Kiwoom Heroes +3",
      "action": "hold",
      "action_score": 55,
      "current_price": 1,
      "realized_pnl": 385,
      "unrealized_pnl": 0,
      "total_pnl": 385,
      "terminal": false
    }
  ]
}