tastytrade net-liq-controller API

The net-liq-controller API from tastytrade — 1 operation(s) for net-liq-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-net-liq-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-net-liq-controller-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Account Status accounts net-liq-controller API
  version: 7.1.0
  description: Operations about accounts
host: api.tastyworks.com
produces:
- application/json
tags:
- name: net-liq-controller
paths:
  /accounts/{accountNumber}/net-liq/history:
    get:
      tags:
      - net-liq-controller
      summary: Get net-liq history for account
      operationId: getNetLiqHistory
      parameters:
      - name: accountNumber
        in: path
        required: true
        schema:
          type: string
      - name: time-back
        in: query
        description: A request of data relative to the current time
        required: false
        schema:
          type: string
          enum:
          - 1d
          - 1w
          - 1m
          - 3m
          - 6m
          - 1y
          - all
      - name: start-time
        in: query
        description: The start-time of a windowed request in format '2011-12-03T10:15:30+01:00[Europe/Paris]'
        required: false
        schema:
          type: string
      - name: end-time
        in: query
        description: The end-time of a windowed request in format '2011-12-03T10:15:30+01:00[Europe/Paris]'
        required: false
        schema:
          type: string
      - name: interval
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/NetLiqOhlc'
components:
  schemas:
    NetLiqOhlc:
      type: object
      properties:
        open:
          type: number
          format: double
        high:
          type: number
          format: double
        low:
          type: number
          format: double
        close:
          type: number
          format: double
        totalOpen:
          type: number
          format: double
        totalHigh:
          type: number
          format: double
        totalLow:
          type: number
          format: double
        totalClose:
          type: number
          format: double
        pendingCashOpen:
          type: number
          format: double
        pendingCashHigh:
          type: number
          format: double
        pendingCashLow:
          type: number
          format: double
        pendingCashClose:
          type: number
          format: double
        time:
          type: string