dart_financials
Pack: dart-kr · Endpoint: https://gateway.pipeworx.io/dart-kr/mcp
Key annual / interim financial line items for a Korean company’s periodic report. Returns income statement, balance sheet, cash flow items with current-period (thstrm) and prior-period (frmtrm / bfefrmtrm) amounts. Use for fundamental analysis (revenue, operating profit, net income, total assets, liabilities, equity, operating cash flow) on KOSPI/KOSDAQ filers. Pair with ecos_get_series for macro context.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
corp_code | string | yes | Required 8-digit DART corp identifier. |
bsns_year | string | yes | Required 4-digit business year (e.g., “2024”). DART historical data goes back to 2015. |
reprt_code | string | yes | Required report type: 11011 (annual), 11012 (half-year/Q2), 11013 (Q1), 11014 (Q3). |
fs_div | string | no | Statement basis: “CFS” (consolidated, default) or “OFS” (separate / parent-only). |
Example call
Arguments
{
"corp_code": "00126380",
"bsns_year": "2024",
"reprt_code": "11011"
}
curl
curl -X POST https://gateway.pipeworx.io/dart-kr/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dart_financials","arguments":{"corp_code":"00126380","bsns_year":"2024","reprt_code":"11011"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dart_financials', {
"corp_code": "00126380",
"bsns_year": "2024",
"reprt_code": "11011"
});
More examples
{
"corp_code": "00164779",
"bsns_year": "2024",
"reprt_code": "11012",
"fs_div": "CFS"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dart-kr": {
"url": "https://gateway.pipeworx.io/dart-kr/mcp"
}
}
}
See Getting Started for client-specific install steps.