Skip to content
Trade It Documentation
Main Navigation HomeTrade LinksReact SDKMCP ServerBrokerages

Appearance

Sidebar Navigation

Trading Integrations

Fast Integration (Trade Links)

Deep Integration (SDK)

Overview

Authentication

Connect a Brokerage

Place Trades

Enums Reference

MCP Server

Installation

Tools

Overview

Create Trade

Create Options Trade

Execute Trade

Get Accounts

Search Assets

Platform

Supported Brokerages

Trade Links (Fast Integration) ​

Best for: blogs, newsletters, research providers, creator communities, Discord servers, and any product that wants to add trading without backend integration work.

Trade Links are the fastest way to turn your investing content into an actionable trading experience.

If your strength is:

  • publishing trade ideas
  • sharing due diligence
  • running a paid investing community
  • writing newsletters
  • building watchlists and research tools

...you probably don't want to spend months building brokerage integrations and trading UIs. Trade Links let you skip all of that and still offer a real trading experience to your users.

All you need to do is share a link with the ticker and trade details (buy/sell, amount, order type, etc.), and your users open a prefilled trading page on Trade It. They can sign up, connect a brokerage, and place the trade in seconds.

This is the "start today" path.

Example 1: Simple Buy Order ​

txt
https://tradeit.app/t/AAPL?tt=0&t=buy&a=100&u=dollars&ot=market&tif=day

See it in action

Brokerage selection screen inside the Trade It connect modal
What the user sees when opening this trade link

Example 2: Multi-leg Option Order ​

txt
https://tradeit.app/t/MSFT?tt=1&ot=market&tif=gtc&legs=%5B%7B%22type%22%3A%22option%22%2C%22action%22%3A%22sell%22%2C%22position_effect%22%3A%22open%22%2C%22occ%22%3A%22270617C00390000%22%2C%22quantity%22%3A5%7D%2C%7B%22type%22%3A%22option%22%2C%22action%22%3A%22buy%22%2C%22position_effect%22%3A%22open%22%2C%22occ%22%3A%22270617C00420000%22%2C%22quantity%22%3A5%7D%5D

See it in action

Brokerage selection screen inside the Trade It connect modal
What the user sees when opening this trade link

Trade Link URL Format ​

txt
https://tradeit.app/t/<TICKER>?<params>

Example:

  • Path ticker: AAPL (or crypto like BTC-USD)
  • Query params: trade parameters (simple or multi-leg)

Parameters ​

These are the parameters that define a trade. Some have defaults if omitted.

FieldMeaningExampleUsed InDefaultNotes
ttTrade type0simple options00 = simple, 1 = options
tBuy or sellbuysimplebuySimple trades use buy / sell
aAmount100simple100Number of dollars or shares
uUnitdollarssimpledollarsdollars or shares
otOrder typemarketsimple optionsmarketmarket, limit, stop, stop_limit
lpLimit price150simple options—Used for limit / stop_limit
spStop price140simple options—Used for stop / stop_limit
tifTime in forcedaysimple optionsdayday, gtc, ioc, fok
legsOptions leg payload
[
  {
    "type": "option",
    "action": "buy",
    "position_effect": "open",
    "occ": "260320C00200000",
    "quantity": 1
  }
]
options—URL-encoded JSON array of leg objects (URL-encode before placing in the query string)
legs[].typeLeg typeoptionoptions—option or equity
legs[].actionLeg actionbuyoptions—buy or sell
legs[].position_effectPosition effectopenoptionsnullopen, close; null for equity legs
legs[].occOCC contract string260320C00200000options—Required for option legs; null for equity legs
legs[].quantityLeg quantity1options1Contracts for options, shares for equity legs

If You Want a More Native Experience ​

Trade Links open in Trade It and are perfect for speed.

But if you want the experience to look and feel native to your platform (embedded modals inside your site, user stays in your UI), check out the Trade It SDK on the next page:

➡️ Deep Integration (Embedded React SDK)

Pager
Next pageOverview