tastytrade Market Metrics API

The Market Metrics API from tastytrade — 3 operation(s) for market metrics.

Operations 3

GET /market-metrics #
GET /market-metrics/historic-corporate-events/dividends/{symbol} #
GET /market-metrics/historic-corporate-events/earnings-reports/{symbol} #

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-metrics-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-market-metrics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Account Status accounts Market Metrics API
  version: 7.1.0
  description: Operations about accounts
servers:
- url: https://api.tastyworks.com
tags:
- name: Market Metrics
paths:
  /market-metrics:
    get:
      description: Returns an array of volatility data for given symbols.
      parameters:
      - in: query
        name: symbols
        description: Comma separated list of symbols i.e. ?symbols=AAPL,FB,BRK%2FB
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns an array of volatility data for given symbols.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MarketMetricInfo'
      operationId: getMarketMetricsIndex
      tags:
      - Market Metrics
  /market-metrics/historic-corporate-events/dividends/{symbol}:
    get:
      description: Get historical dividend data
      parameters:
      - in: path
        name: symbol
        description: Symbol to get dividends data for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Array of historical dividend data
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DividendInfo'
      operationId: getMarketMetricsDividendsSymbol
      tags:
      - Market Metrics
  /market-metrics/historic-corporate-events/earnings-reports/{symbol}:
    get:
      description: Get historical earnings data
      parameters:
      - in: path
        name: symbol
        description: Symbol to get earnings data for
        required: true
        schema:
          type: string
      - in: query
        name: start-date
        description: Limits earnings data from start-date until now
        required: true
        schema:
          type: string
          format: date
      - in: query
        name: end-date
        description: Limits earnings data from start-date until end-date
        required: false
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Array of historical earnings data
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EarningsInfo'
      operationId: getMarketMetricsEarningsSymbol
      tags:
      - Market Metrics
components:
  schemas:
    EarningsInfo:
      type: object
      properties:
        occurred-date:
          description: Date of earnings announcement
          type: string
          format: date
        eps:
          description: Earnings per share amount
          type: number
          format: float
    MarketMetricInfo:
      type: object
      properties:
        symbol:
          description: Symbol
          type: string
        implied-volatility-index:
          description: IV Index of underlying
          type: number
          format: float
        implied-volatility-index-5-day-change:
          description: 5 day change of IV index of underlying
          type: number
          format: float
        implied-volatility-rank:
          description: IV Rank of underlying
          type: number
          format: float
        implied-volatility-percentile:
          description: IV percentile of underlying
          type: number
          format: float
        liquidity:
          description: liquidity of underlying
          type: number
          format: float
        liquidity-rank:
          description: liquidity rank of underlying
          type: number
          format: float
        liquidity-rating:
          description: liquidity rating of underlying
          type: number
          format: int32
        option-expiration-implied-volatilities:
          description: List of option volatility data
          type: array
          items:
            type: object
            properties:
              expiration-date:
                description: Option expiration date
                type: string
                format: date-time
              settlement-type:
                description: AM or PM settlement
                type: string
              option-chain-type:
                description: Option chain type i.e. Standard or Non-standard.
                type: string
              implied-volatility:
                description: Implied volatility of option expiration
                type: number
                format: double
      description: Includes underlying volatility and liquidity data as well as option volatility data.
    DividendInfo:
      type: object
      properties:
        occurred-date:
          description: Date of dividend
          type: string
          format: date
        amount:
          description: Per share amount
          type: number
          format: float