https://api.snaptrade.com/api/v1/snapTrade/tradeDetection/subscriptions
Returns active Trade Detection subscriptions for your Client ID. Cancelled subscriptions are not returned.
1import { Snaptrade } from "snaptrade-typescript-sdk";2 3const snaptrade = new Snaptrade({4 clientId: "PARTNER_CLIENT_ID",5 consumerKey: "CONSUMER_KEY",6});7 8const response =9 await snaptrade.experimentalEndpoints.listSubscriptions();10console.log(response.data);
array of objects
object
An active Trade Detection subscription for a brokerage account.
account_id
string (format: uuid)
Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.
cost
string
Monthly subscription cost as a decimal string.
check_interval_seconds
integer
How often the subscribed account is checked for new trades.
1[2 {3 "account_id": "917c8734-8470-4a3e-a18f-57c3f2ee6631",4 "cost": "100.00",5 "check_interval_seconds": 3006 }7]