action interactivebrokers_get_secdef { label: "Get security definition" description: "Fields that compose security definition. Allowed combinations,\n(1) type and symbol and currency, or\n(2) type, symbol, exchange, and currency, or\n(3) conid\n" provider: interactivebrokers method: GET path: "/secdef" encoding: json input: { type: "object" properties: { conid: { type: "number" description: "The internal IB identifier for the trading product specified as an integer." } currency: { type: "string" description: "The currency in which the given pair trades." } exchange: { type: "string" description: "The exchange on which the trading product is listed (required for type=STK)." } symbol: { type: "string" description: "The symbol that identifies the trading product." } type: { type: "string" description: "The instrument type of the contract (CASH)." } } } output: { type: "array" items: { type: "object" properties: { CompanyName: { type: "string" } ContractId: { type: "number" } Currency: { type: "string" } Exchange: { type: "string" } SecurityType: { type: "string" } Ticker: { type: "string" } } } } }