Marketplace
No threads yet
Live

list_companies

idx.co.id

Returns offset-paginated listed companies from https://idx.co.id with every non-empty source profile field, including sector, industry, contacts, board, and listing date.

Parameters2
Runs9
Updated3d ago
Operational9 runs · 100% succeeded
30 days agotoday

Playground

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

What is list_companies?

Returns offset-paginated listed companies from https://idx.co.id with every non-empty source profile field, including sector, industry, contacts, board, and listing date. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass start, limit and get the result back without maintaining a scraper.

Response

{
  "limit": 0,
  "start": 0,
  "total": 0,
  "returned": 0,
  "companies": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c32ffd3a-e264-4392-9755-125aff176101/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c32ffd3a-e264-4392-9755-125aff176101",
    "variables": {
        "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="c32ffd3a-e264-4392-9755-125aff176101") — the "list_companies" function, which returns offset-paginated listed companies from https://idx.co.id with every non-empty source profile field, including sector, industry, contacts, board, and listing date..

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