tastytrade · Example Payload

Transactions Getaccountsaccountnumbertransactionstotalfees

accounts

Transactions Getaccountsaccountnumbertransactionstotalfees 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": "getAccountsAccountNumberTransactionsTotalFees",
  "method": "GET",
  "path": "/accounts/{account_number}/transactions/total-fees",
  "summary": "Return the total fees for an account for a given day",
  "tags": [
    "accounts"
  ],
  "parameters": [
    {
      "name": "account_number",
      "in": "path",
      "required": true
    },
    {
      "name": "date",
      "in": "query",
      "required": false
    }
  ]
}