@@ -461,6 +461,44 @@ export class EODHDClient {
461461 return this . _fundamentals . bulkFundamentals ( exchange , params ) ;
462462 }
463463
464+ /**
465+ * Fetch company fundamentals using the v1.1 API (extended Earnings::Trend section).
466+ *
467+ * @param ticker - Symbol with exchange suffix, e.g. `"AAPL.US"`
468+ * @param params - Optional date range, filter, historical toggle
469+ * @returns Fundamentals data object with nested sections
470+ * @throws {@link EODHDError } on API error
471+ * @see https://eodhd.com/financial-apis/stock-etfs-fundamental-data-feeds/
472+ *
473+ * @example
474+ * ```ts
475+ * const fund = await client.fundamentalsV1_1('AAPL.US');
476+ * console.log(fund.Earnings); // extended Trend data
477+ * ```
478+ */
479+ fundamentalsV1_1 ( ticker : Ticker , params ?: FundamentalsParams ) : Promise < FundamentalsData > {
480+ return this . _fundamentals . fundamentalsV1_1 ( ticker , params ) ;
481+ }
482+
483+ /**
484+ * Fetch bulk fundamentals v1.1 for all tickers on an exchange (extended Earnings::Trend).
485+ *
486+ * @param exchange - Exchange code, e.g. `"US"`
487+ * @param params - Optional symbols filter
488+ * @returns Array of bulk fundamentals items
489+ * @throws {@link EODHDError } on API error
490+ * @see https://eodhd.com/financial-apis/bulk-fundamentals-api/
491+ *
492+ * @example
493+ * ```ts
494+ * const bulk = await client.bulkFundamentalsV1_1('US', { symbols: 'AAPL,MSFT' });
495+ * console.log(bulk[0].General?.Name);
496+ * ```
497+ */
498+ bulkFundamentalsV1_1 ( exchange : string , params ?: BulkFundamentalsParams ) : Promise < BulkFundamentalsItem [ ] > {
499+ return this . _fundamentals . bulkFundamentalsV1_1 ( exchange , params ) ;
500+ }
501+
464502 // ── News & Sentiment ──
465503
466504 /**
0 commit comments