Create Order

Endpoint: POST /orders

This endpoint triggers the FaaSFi Smart Order Router (SOR). You do not specify where to trade; you specify what risk you want to buy. The SOR automatically routes the capital to the optimal venue.

Request Body:

{
  "ticker": "FED-DEC25-CUT",
  "side": "buy",
  "direction": "YES",
  "amount_usd": 50000,
  "strategy": "BEST_EXECUTION",
  "max_slippage": 0.02
}

Parameters Detail:

  • strategy:

    • BEST_EXECUTION: Splits order dynamically to minimize average entry price.

    • REGULATED_ONLY: Routes 100% of volume to Kalshi (requires US compliant sub account).

    • DEFI_ONLY: Routes to Polymarket and Limitless only.

Last updated