CN/HK Financial Report Facts Index
Pricing
from $7.00 / 1,000 results
CN/HK Financial Report Facts Index
CN/HK financial report facts index for A-share and HK; supports scan and section retrieval with 2023-2025 historical reports and 2026+ daily incremental updates.
Pricing
from $7.00 / 1,000 results
Rating
0.0
(0)
Developer
dianming hu
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
CN/HK Financial Report Facts Index (2023-2025 + 2026+ Incremental)
This Actor is an Apify bridge to cube-mcp financial-report facts for China A-shares (CN) and Hong Kong stocks (HK).
What this Actor does
- Supports semantic scan (
scan) and full section retrieval (section) for CN/HK filings. - Historical coverage: annual, semi-annual and quarterly data for 2023–2025.
- Incremental updates: from 2026 onward, synchronized daily.
- Best suited for Agent workflows: MCP/LLM callers can consume concise evidence rows with source traceability.
Authentication model
The actor uses the Apify secret cube_mcp_key mapped as MCP_API_KEY in .actor/actor.json.
Users run the actor with normal business inputs only; they do not provide cuecue/MCP credentials directly.
Input
Common fields
market(required): one ofcn,hk,both(defaultcn).bothruns both markets and merges results.
mode(required): one ofscan,section(defaultscan).period(optional): report period as string (default2025).outputLanguage(optional):en(default, Agent-friendly) orzh.enreturns translated/normalizedsummary/resultText/sectionTitle.- Chinese originals are preserved in
summaryZh,resultTextZh,sectionTitleZh.
Scan mode (mode: "scan")
query(string, optional; required if noanchor)anchor(string, optional; required if noquery)defaultSectionKey(optional): fallback section key when anchors are not provided (defaultfinancial_report)limit(optional, integer): 1..30, default15autoSection(optional, boolean): iftrue, auto-fetch section content for top scan rowsautoSectionLimit(optional, integer): 1..5focus(optional):default(keep all) orinvestment(filter/rank by investment keywords)focusKeywords(optional, comma/semicolon/newline separated string)focusKeywordMinMatch(optional, integer): minimum keyword matches ininvestmentmode (default1)summaryMode(optional):true(default) keeps compact output;falseincludes raw section fields where available
Section mode (mode: "section")
stockCode(required): stock code, e.g.300098sectionKey(required): section key, e.g.financial_reportperiod(optional): report period, default2025docKey(optional): optional direct doc targetingnodeId(optional): optional direct node targetingsummaryMode(optional): defaulttrue
Output
Scan result fields (default)
Main fields:
market,mode,tool,period,query,anchorcompany,doc_key,node_idsummary,resultText,sectionTitlescoresource:pdf_url,publish_date,doc_idfocusMode,focusMatchCount,focusMatchedKeywords,focusScore
Trace fields:
summaryZh,resultTextZh,sectionTitleZh
No separate ...En duplicate fields are emitted in this actor.
Section result fields
stockCode,sectionKey,periodsummary,resultText,sourcesummaryZh,resultTextZh
Example inputs
1) Scan (recommended)
{"market": "cn","mode": "scan","query": "营收","period": "2025","limit": 10,"focus": "investment","focusKeywordMinMatch": 1,"outputLanguage": "en"}
2) Section retrieval
{"market": "cn","mode": "section","stockCode": "300098","period": "2025","sectionKey": "financial_report","docKey": "cn_fr:300098:2025:annual_report","nodeId": "n0005","summaryMode": false}
3) Scan with auto section
{"market": "cn","mode": "scan","query": "营收","period": "2025","limit": 10,"autoSection": true,"autoSectionLimit": 2,"outputLanguage": "en"}
Output example
{"market": "cn","mode": "scan","tool": "scan_financial_report_evidence","period": "2025","query": "营收","company": "300098","doc_key": "cn_fr:300098:2025:annual_report","node_id": "n0005","sectionTitle": "1.1 Automotive Electronics","summary": "In this section, the company operating revenue reached 857,566,178.58 CNY...","resultText": "In this section, the company operating revenue reached 857,566,178.58 CNY...","summaryZh": "在本章中,公司营业收入达到857,566,178.58元...","resultTextZh": "在本章中,公司营业收入达到857,566,178.58元...","sectionTitleZh": "1.1 汽车车载产品","source": {"pdf_url": "http://static.cninfo.com.cn/finalpage/2026-04-18/1225118884.PDF","publish_date": "2026-04-18","doc_id": "1225118884"},"score": 0.81714}
API call (minimal)
curl -X POST "https://api.apify.com/v2/acts/<YOUR_ACTOR_ID>/runs?token=<APIFY_TOKEN>" \-H "Content-Type: application/json" \-d '{"input": {"market": "cn","mode": "scan","query": "营收","period": "2025","limit": 5,"outputLanguage": "en"}}'
FAQ
Q: Do users need to enter a cuecue/MCP key?
A: No. End users use only actor inputs. The platform secret is configured by the actor owner as MCP_API_KEY.
Q: How should an Agent consume output?
A: Use summary, resultText, and sectionTitle as primary fields. Keep *Zh fields (summaryZh, resultTextZh, sectionTitleZh) for traceability.
Q: Why might scan return fewer/no rows?
A: Check focus="investment" and focusKeywords settings. If enabled, rows not matching enough investment keywords are filtered.