tastytrade · Example Payload

Balances And Positions Getaccountsaccountnumberbalancescurrency

accounts

Balances And Positions Getaccountsaccountnumberbalancescurrency 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": "getAccountsAccountNumberBalancesCurrency",
  "method": "GET",
  "path": "/accounts/{account_number}/balances/{currency}",
  "summary": "Returns the current balance values for an account and currency",
  "tags": [
    "accounts"
  ],
  "parameters": [
    {
      "name": "account_number",
      "in": "path",
      "required": true
    },
    {
      "name": "currency",
      "in": "path",
      "required": true
    }
  ]
}