Your agent recalls fuzzy financials from training data; this returns exact figures from SEC EDGAR filings.
US public-company disclosures from SEC EDGAR: a company's filing history, reported financial facts (XBRL), single line-item concepts, and cross-company comparisons for one metric and period. Public-domain regulatory data.
A company's filing history (10-K, 10-Q, 8-K, and more) with dates and document links.
10-digit zero-padded SEC CIK (e.g. 0000320193). Resolve from a ticker with lookup_cik.
curl -X POST "https://skill.askfaro.com/skills/sec-filings/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Show Apple's recent SEC filings"
}
}'askfaro describe sec-filings/company_filings
Install pip install askfaro-cli, then askfaro auth login.
A company's reported financials summarized — every concept with its latest reported value.
10-digit zero-padded SEC CIK (e.g. 0000320193). Resolve from a ticker with lookup_cik.
curl -X POST "https://skill.askfaro.com/skills/sec-filings/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Get Apple's reported financials"
}
}'askfaro describe sec-filings/sec-filings.company_facts
Install pip install askfaro-cli, then askfaro auth login.
One financial line item for a company over time (e.g. Revenues), with all reported values.
10-digit zero-padded SEC CIK (e.g. 0000320193).
XBRL concept tag, e.g. Revenues, NetIncomeLoss, AccountsPayableCurrent.
XBRL taxonomy, usually "us-gaap" (also "dei", "ifrs-full").
curl -X POST "https://skill.askfaro.com/skills/sec-filings/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Show Apple's revenue over time"
}
}'askfaro describe sec-filings/company_concept
Install pip install askfaro-cli, then askfaro auth login.
One financial metric reported by every company for a single period, for cross-company comparison.
XBRL concept tag, e.g. Revenues, AccountsPayableCurrent.
Unit of measure, e.g. USD. Ratios use forms like USD-per-shares.
SEC frame period: CY#### (year), CY####Q# (quarter), trailing I for instantaneous, e.g. CY2019Q1I.
XBRL taxonomy, usually "us-gaap".
curl -X POST "https://skill.askfaro.com/skills/sec-filings/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Compare accounts payable across companies for Q1 2019"
}
}'askfaro describe sec-filings/frames
Install pip install askfaro-cli, then askfaro auth login.
Resolve a stock ticker or company name to its SEC CIK number.
Maximum candidate matches to return.
A stock ticker (e.g. AAPL) or company name (e.g. Apple) to resolve.
curl -X POST "https://skill.askfaro.com/skills/sec-filings/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "What is Apple's CIK number?"
}
}'askfaro describe sec-filings/sec-filings.lookup_cik
Install pip install askfaro-cli, then askfaro auth login.