tastytradeDeveloper Docs
Legacy ↗

Release Notes

Changes to the API, newest first. See API versions for how to target a version with the Accept-Version header.

20260629

Cryptocurrency trading has been disabled through the API until further notice.

20260211

Legacy /sessions authentication has been fully decommissioned. If you are still sending POST /sessions, your application is failing to log in. Switch to OAuth2 to restore access.

20250813

Response data is now paginated for:

  • GET /accounts/{account_number}/orders/live
{
  "data": {
    "items": [{}]
  },
  "pagination": {
    "per-page": 1000,
    "page-offset": 0,
    "item-offset": 0,
    "total-items": 25719,
    "total-pages": 26,
    "current-item-count": 1000
  }
}

See Pagination and filtering for how to walk the pages, and Orders for the endpoint itself.

Related