Marketplace
No threads yet
Live

get_daily_stock_summary

idx.co.id

Returns daily stock trading summaries from https://idx.co.id, including the complete price, volume, value, frequency, order-book, share, and foreign-flow fields exposed for each stock. Supports optional trading dates and manual offset paging with start and limit.

Parameters3
Runs11
Updated10d ago

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_daily_stock_summary?

Returns daily stock trading summaries from https://idx.co.id, including the complete price, volume, value, frequency, order-book, share, and foreign-flow fields exposed for each stock. Supports optional trading dates and manual offset paging with start and limit. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date, start, limit and get the result back without maintaining a scraper.

Response

{
  "limit": 0,
  "start": 0,
  "total": 0,
  "records": [
    {}
  ],
  "has_more": true,
  "trading_date": "<string>",
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2b9566f6-2c5b-4556-8e5e-eb7dcccf9e71/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2b9566f6-2c5b-4556-8e5e-eb7dcccf9e71",
    "variables": {
        "date": "",
        "start": 0,
        "limit": 100
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="2b9566f6-2c5b-4556-8e5e-eb7dcccf9e71") — the "get_daily_stock_summary" function, which returns daily stock trading summaries from https://idx.co.id, including the complete price, volume, value, frequency, order-book, share, and foreign-flow fields exposed for each stock. Supports optional trading dates and manual offset paging with start and limit..

It takes date (str), start (int), limit (int). Return the result as structured JSON.