Skip to content

Commit

Permalink
docs(quoteSummary): add sec fillings example (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicogenz authored Oct 24, 2021
1 parent 68378d5 commit d88a848
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion docs/modules/quoteSummary.md
Original file line number Diff line number Diff line change
Expand Up @@ -1129,8 +1129,32 @@ await yahooFinance.quoteSummary('PLTR', { modules: [ "recommendationTrend" ] });
### secFilings

```js
await yahooFinance.quoteSummary('', { modules: [ "secFilings" ] });
await yahooFinance.quoteSummary('AAPL', { modules: [ "secFilings" ] });

{
secFilings: {
filings: [
{
date: new Date("2021-08-05"),
epochDate: new Date("2021-08-05T21:32:55.000Z"),
type: "8-K",
title: "Other Events, Financial Statements and Exhibits",
edgarUrl: "https://yahoo.brand.edgar-online.com/DisplayFiling.aspx?TabIndex=2&dcn=0001193125-21-237787&nav=1&src=Yahoo",
maxAge: 1
},
{
date: new Date("2021-07-28"),
epochDate: new Date("2021-07-28T11:02:48.000Z"),
type: "10-Q",
title: "Quarterly Report",
edgarUrl: "https://yahoo.brand.edgar-online.com/DisplayFiling.aspx?TabIndex=2&dcn=0000320193-21-000065&nav=1&src=Yahoo",
maxAge: 1
},
...
],
maxAge: 86400
}
}

```

Expand Down

0 comments on commit d88a848

Please sign in to comment.