tastytrade quote-alerts API

Operations about quote-alerts

Operations 3

GET /quote-alerts #
POST /quote-alerts #
DELETE /quote-alerts/{alert_external_id} #

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-quote-alerts-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-quote-alerts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Account Status accounts Quote Alerts API
  version: 7.1.0
  description: Operations about accounts
servers:
- url: https://api.tastyworks.com
tags:
- name: quote-alerts
  description: Operations about quote-alerts
paths:
  /quote-alerts:
    get:
      description: Get quote alerts for current user
      responses:
        '200':
          description: Get quote alerts for current user
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteAlertDeserializer'
      tags:
      - quote-alerts
      operationId: getQuoteAlerts
    post:
      description: Create quote alert for symbol
      responses:
        '201':
          description: Create quote alert for symbol
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteAlertDeserializer'
      tags:
      - quote-alerts
      operationId: postQuoteAlerts
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/postQuoteAlerts'
        required: true
  /quote-alerts/{alert_external_id}:
    delete:
      description: Cancel a quote alert for current user
      parameters:
      - in: path
        name: alert_external_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '204':
          description: Cancel a quote alert for current user
      tags:
      - quote-alerts
      operationId: deleteQuoteAlertsAlertExternalId
components:
  schemas:
    QuoteAlertDeserializer:
      type: object
      properties:
        alert-external-id:
          description: ''
          type: string
        completed-at:
          description: ''
          type: string
          format: date-time
        created-at:
          description: ''
          type: string
          format: date-time
        dismissed-at:
          description: ''
          type: string
          format: date-time
        dx-symbol:
          description: ''
          type: string
        expired-at:
          description: ''
          type: string
          format: date-time
        expires-at:
          description: ''
          type: string
        field:
          description: ''
          type: string
        instrument-type:
          description: ''
          type: string
        operator:
          description: ''
          type: string
        provider:
          description: ''
          type: string
        symbol:
          description: ''
          type: string
        threshold:
          description: ''
          type: string
        threshold-numeric:
          description: ''
          type: number
          format: double
        triggered-at:
          description: ''
          type: string
          format: date-time
        user-external-id:
          description: ''
          type: string
      description: QuoteAlertDeserializer model
    postQuoteAlerts:
      type: object
      properties:
        dx-symbol:
          type: string
        expires-at:
          type: string
        field:
          type: string
          enum:
          - Last
          - Bid
          - Ask
          - IV
        instrument-type:
          type: string
        operator:
          type: string
          enum:
          - '>'
          - <
        symbol:
          type: string
        threshold:
          type: string
        threshold-numeric:
          type: string
      required:
      - field
      - operator
      - symbol
      - threshold
      description: Create quote alert for symbol