{ "opencollection": "1.0.0", "info": { "name": "TD Ameritrade and Trading Accounts Transactions API", "version": "1" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://auth.tdameritrade.com/auth", "accessTokenUrl": "https://api.tdameritrade.com/v1/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Transactions", "type": "folder" }, "items": [ { "info": { "name": "Get Transactions", "type": "http" }, "http": { "method": "GET", "url": "https://api.tdameritrade.com/v1/accounts/:accountId/transactions", "params": [ { "name": "accountId", "value": "", "type": "path", "description": "Unique account identifier" }, { "name": "type", "value": "", "type": "query", "description": "Only retrieve transactions of specific type" }, { "name": "symbol", "value": "", "type": "query", "description": "Only retrieve transactions for a specific symbol" }, { "name": "startDate", "value": "", "type": "query", "description": "Start date filter (yyyy-MM-dd)" }, { "name": "endDate", "value": "", "type": "query", "description": "End date filter (yyyy-MM-dd)" } ] }, "docs": "Retrieve transaction history for a specific account with optional filtering." }, { "info": { "name": "Get Transaction", "type": "http" }, "http": { "method": "GET", "url": "https://api.tdameritrade.com/v1/accounts/:accountId/transactions/:transactionId", "params": [ { "name": "accountId", "value": "", "type": "path", "description": "Unique account identifier" }, { "name": "transactionId", "value": "", "type": "path", "description": "Unique transaction identifier" } ] }, "docs": "Retrieve a specific transaction for an account by its transaction ID." } ] } ], "bundled": true }