list_financial_reports
idx.co.idReturns financial and annual report listings from https://idx.co.id with company, period, submission date, and complete attachment metadata plus optional date filtering.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_financial_reports?
Returns financial and annual report listings from https://idx.co.id with company, period, submission date, and complete attachment metadata plus optional date filtering. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass stock_code, year, period, report_type, date_from, date_to, start, limit and get the result back without maintaining a scraper.
Response
{
"Results": [
{}
],
"ResultCount": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/151e5c8d-800f-4557-85ae-8574b76c6061/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "151e5c8d-800f-4557-85ae-8574b76c6061",
"variables": {
"stock_code": "",
"year": "",
"period": "tw1",
"report_type": "rdf",
"date_from": "",
"date_to": "",
"start": 0,
"limit": 12
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="151e5c8d-800f-4557-85ae-8574b76c6061") — the "list_financial_reports" function, which returns financial and annual report listings from https://idx.co.id with company, period, submission date, and complete attachment metadata plus optional date filtering.. It takes stock_code (str), year (str), period (str), report_type (str), date_from (str), date_to (str), start (int), limit (int). Return the result as structured JSON.