tastytrade · Example Payload

Balances And Positions Getaccountsaccountnumberbalancesnapshots

balance-snapshots

Balances And Positions Getaccountsaccountnumberbalancesnapshots is an example object payload from tastytrade, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarytagsparameters

Example Payload

Raw ↑
{
  "operationId": "getAccountsAccountNumberBalanceSnapshots",
  "method": "GET",
  "path": "/accounts/{account_number}/balance-snapshots",
  "summary": "Returns most recent snapshot and current balance for an account",
  "tags": [
    "balance-snapshots"
  ],
  "parameters": [
    {
      "name": "account_number",
      "in": "path",
      "required": true
    },
    {
      "name": "page-offset",
      "in": "query",
      "required": false
    },
    {
      "name": "per-page",
      "in": "query",
      "required": false
    },
    {
      "name": "currency",
      "in": "query",
      "required": false
    },
    {
      "name": "snapshot-date",
      "in": "query",
      "required": false
    },
    {
      "name": "time-of-day",
      "in": "query",
      "required": true
    },
    {
      "name": "start-date",
      "in": "query",
      "required": false
    },
    {
      "name": "end-date",
      "in": "query",
      "required": false
    }
  ]
}