tastytrade option-chains API

Operations about option-chains

Operations 3

GET /option-chains/{symbol} #
GET /option-chains/{symbol}/compact #
GET /option-chains/{symbol}/nested #

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-option-chains-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

tastytrade-option-chains-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Account Status accounts Option Chains API
  version: 7.1.0
  description: Operations about accounts
servers:
- url: https://api.tastyworks.com
tags:
- name: option-chains
  description: Operations about option-chains
paths:
  /option-chains/{symbol}:
    get:
      description: Returns an option chain given an underlying symbol, i.e. `AAPL`
      parameters:
      - in: path
        name: symbol
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Returns an option chain given an underlying symbol, i.e. `AAPL`
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EquityOption'
      tags:
      - option-chains
      operationId: getOptionChainsSymbol
  /option-chains/{symbol}/compact:
    get:
      description: Returns an option chain given an underlying symbol, i.e. `AAPL` in a compact form to minimize content size
      parameters:
      - in: path
        name: symbol
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Returns an option chain given an underlying symbol, i.e. `AAPL` in a compact form to minimize content size
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompactOptionChainSerializer'
      tags:
      - option-chains
      operationId: getOptionChainsSymbolCompact
  /option-chains/{symbol}/nested:
    get:
      description: "Returns an option chain given an underlying symbol, \\\n          i.e. `AAPL` in a nested form to minimize redundant processing"
      parameters:
      - in: path
        name: symbol
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: "Returns an option chain given an underlying symbol, \\\n          i.e. `AAPL` in a nested form to minimize redundant processing"
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NestedOptionChainSerializer'
      tags:
      - option-chains
      operationId: getOptionChainsSymbolNested
components:
  schemas:
    EquityOption:
      type: object
      properties:
        active:
          description: ''
          type: boolean
        days-to-expiration:
          description: ''
          type: integer
          format: int32
        exercise-style:
          description: ''
          type: string
        expiration-date:
          description: ''
          type: string
          format: date
        expiration-type:
          description: ''
          type: string
        expires-at:
          description: ''
          type: string
          format: date-time
        halted-at:
          description: ''
          type: string
          format: date-time
        instrument-type:
          description: ''
          type: string
        is-closing-only:
          description: ''
          type: boolean
        listed-market:
          description: ''
          type: string
        market-time-instrument-collection:
          description: ''
          type: string
        old-security-number:
          description: ''
          type: string
        option-chain-type:
          description: ''
          type: string
        option-type:
          description: ''
          type: string
        root-symbol:
          description: ''
          type: string
        settlement-type:
          description: ''
          type: string
        shares-per-contract:
          description: ''
          type: integer
          format: int32
        stops-trading-at:
          description: ''
          type: string
          format: date-time
        streamer-symbol:
          description: ''
          type: string
        strike-price:
          description: ''
          type: number
          format: double
        symbol:
          description: ''
          type: string
        underlying-symbol:
          description: ''
          type: string
      description: EquityOption model
    CompactOptionChainSerializer:
      type: object
      properties:
        underlying-symbol:
          description: ''
          type: string
        root-symbol:
          description: ''
          type: string
        option-chain-type:
          description: ''
          type: string
        settlement-type:
          description: ''
          type: string
        shares-per-contract:
          description: ''
          type: integer
          format: int32
        expiration-type:
          description: ''
          type: string
        deliverables:
          description: ''
          type: object
          properties:
            id:
              description: ''
              type: integer
              format: int32
            amount:
              description: ''
              type: number
              format: double
            deliverable-type:
              description: ''
              type: string
            description:
              description: ''
              type: string
            instrument-type:
              description: ''
              type: string
            percent:
              description: ''
              type: string
            root-symbol:
              description: ''
              type: string
            symbol:
              description: ''
              type: string
        symbols:
          description: ''
          type: string
        streamer-symbols:
          description: ''
          type: string
      description: CompactOptionChainSerializer model
    NestedOptionChainSerializer:
      type: object
      properties:
        underlying-symbol:
          description: ''
          type: string
        root-symbol:
          description: ''
          type: string
        option-chain-type:
          description: ''
          type: string
        shares-per-contract:
          description: ''
          type: integer
          format: int32
        tick-sizes:
          description: ''
          type: object
          properties:
            symbol:
              description: ''
              type: string
            threshold:
              description: ''
              type: number
              format: double
            value:
              description: ''
              type: number
              format: double
        deliverables:
          description: ''
          type: object
          properties:
            id:
              description: ''
              type: integer
              format: int32
            amount:
              description: ''
              type: number
              format: double
            deliverable-type:
              description: ''
              type: string
            description:
              description: ''
              type: string
            instrument-type:
              description: ''
              type: string
            percent:
              description: ''
              type: string
            root-symbol:
              description: ''
              type: string
            symbol:
              description: ''
              type: string
        expirations:
          description: ''
          type: object
          properties:
            expiration-type:
              description: ''
              type: string
            expiration-date:
              description: ''
              type: string
              format: date
            days-to-expiration:
              description: ''
              type: integer
              format: int32
            settlement-type:
              description: ''
              type: string
            strikes:
              description: ''
              type: object
              properties:
                strike-price:
                  description: ''
                  type: number
                  format: double
                call:
                  description: ''
                  type: string
                call-streamer-symbol:
                  description: ''
                  type: string
                put:
                  description: ''
                  type: string
                put-streamer-symbol:
                  description: ''
                  type: string
      description: NestedOptionChainSerializer model