tastytrade market-data-controller API

The market-data-controller API from tastytrade — 1 operation(s) for market-data-controller.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/tastytrade-market-data-controller-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

tastytrade-market-data-controller-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Account Status accounts market-data-controller API
  version: 7.1.0
  description: Operations about accounts
host: api.tastyworks.com
produces:
- application/json
tags:
- name: market-data-controller
paths:
  /market-data/by-type:
    get:
      tags:
      - market-data-controller
      summary: Get market data for many symbols of type. Combined limit across all types is 100
      operationId: getMarketDataByType
      parameters:
      - name: index
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
          default: []
      - name: equity
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
          default: []
      - name: equity-option
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
          default: []
      - name: future
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
          default: []
      - name: future-option
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
          default: []
      - name: cryptocurrency
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
          default: []
      responses:
        '200':
          description: successful operation
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/MarketData'
components:
  schemas:
    Instrument:
      type: object
      properties:
        symbol:
          type: string
        instrumentType:
          type: string
          enum:
          - Bond
          - Cryptocurrency
          - Equity
          - Equity Offering
          - Equity Option
          - Fixed Income Security
          - Future
          - Future Option
          - Index
          - Liquidity Pool
          - Mutual Fund
          - Unknown
        instrumentKey:
          $ref: '#/components/schemas/InstrumentKey'
        underlyingInstrument:
          $ref: '#/components/schemas/Instrument'
        rootSymbol:
          type: string
        exchange:
          type: string
          enum:
          - EQUITY
          - SMALLS
          - CME
          - CFE
          - CBOED
          - BOND
          - CRYPTOCURRENCY
          - EQUITY_OFFERING
          - UNKNOWN
    MarketData:
      type: object
      properties:
        symbol:
          type: string
        instrumentType:
          type: string
          enum:
          - Bond
          - Cryptocurrency
          - Equity
          - Equity Offering
          - Equity Option
          - Fixed Income Security
          - Future
          - Future Option
          - Index
          - Liquidity Pool
          - Mutual Fund
          - Unknown
        updatedAt:
          type: string
          format: date-time
        bid:
          type: number
          format: double
        bidSize:
          type: number
          format: double
        ask:
          type: number
          format: double
        askSize:
          type: number
          format: double
        mid:
          type: number
          format: double
        mark:
          type: number
          format: double
        last:
          type: number
          format: double
        lastExt:
          type: number
          format: double
        lastMkt:
          type: number
          format: double
        beta:
          type: number
          format: double
        dividendAmount:
          type: number
          format: double
        dividendFrequency:
          type: number
          format: double
        open:
          type: number
          format: double
        dayHighPrice:
          type: number
          format: double
        dayLowPrice:
          type: number
          format: double
        close:
          type: number
          format: double
        closePriceType:
          type: string
          enum:
          - UNKNOWN
          - REGULAR
          - INDICATIVE
          - PRELIMINARY
          - FINAL
        prevClose:
          type: number
          format: double
        prevClosePriceType:
          type: string
          enum:
          - UNKNOWN
          - REGULAR
          - INDICATIVE
          - PRELIMINARY
          - FINAL
        summaryDate:
          type: string
          format: date
        prevCloseDate:
          type: string
          format: date
        lowLimitPrice:
          type: number
          format: double
        highLimitPrice:
          type: number
          format: double
        tradingHaltedReason:
          type: string
        haltStartTime:
          type: integer
          format: int64
        haltEndTime:
          type: integer
          format: int64
        yearLowPrice:
          type: number
          format: double
        yearHighPrice:
          type: number
          format: double
        volume:
          type: number
          format: double
        tradingHalted:
          type: boolean
        lastTradeTime:
          type: integer
          format: int64
        dayOpen:
          type: number
          format: double
          deprecated: true
        dayHigh:
          type: number
          format: double
          deprecated: true
        dayLow:
          type: number
          format: double
          deprecated: true
        dayClose:
          type: number
          format: double
          deprecated: true
        prevDayClose:
          type: number
          format: double
          deprecated: true
        instrument:
          $ref: '#/components/schemas/Instrument'
    InstrumentKey:
      type: object
      properties:
        symbol:
          type: string
        instrumentType:
          type: string
          enum:
          - Bond
          - Cryptocurrency
          - Equity
          - Equity Offering
          - Equity Option
          - Fixed Income Security
          - Future
          - Future Option
          - Index
          - Liquidity Pool
          - Mutual Fund
          - Unknown