Marketplace
No threads yet
Live

list_ipo_relisting_records

idx.co.id

Returns IPO and relisting company records from https://idx.co.id with listing dates, share counts, security flags, and boards, sorted newest first with start and limit paging.

Parameters6
Runs8
Updated3d ago
Operational8 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_ipo_relisting_records?

Returns IPO and relisting company records from https://idx.co.id with listing dates, share counts, security flags, and boards, sorted newest first with start and limit paging. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing_type, year, security_type, language, start, limit and get the result back without maintaining a scraper.

Response

{
  "Year": 0,
  "Limit": 0,
  "Start": 0,
  "Replies": [
    {}
  ],
  "ListingType": "<string>",
  "ResultCount": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b1f5b332-2619-4b8d-8510-7e37babcade7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b1f5b332-2619-4b8d-8510-7e37babcade7",
    "variables": {
        "listing_type": "ipo",
        "year": 0,
        "security_type": "all",
        "language": "id",
        "start": 0,
        "limit": 10
    }
}'

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="b1f5b332-2619-4b8d-8510-7e37babcade7") — the "list_ipo_relisting_records" function, which returns IPO and relisting company records from https://idx.co.id with listing dates, share counts, security flags, and boards, sorted newest first with start and limit paging..

It takes listing_type (str), year (int), security_type (str), language (str), start (int), limit (int). Return the result as structured JSON.