Web Indonesia IPO Data API (1.0.0)

Download OpenAPI specification:

Public read-only access to IPO data in Indonesia. All responses are served as JSON files from the /data/ directory.

Get latest metadata information

Returns metadata such as the latest update timestamp.

Responses

Response samples

Content type
application/json
{
  • "last_updated": "2019-08-24T14:15:22Z"
}

Get list of available stocks

Returns an alphabetically sorted list of stock tickers.

Responses

Response samples

Content type
application/json
[
  • "string"
]

Get list of underwriters

Returns an alphabetically sorted list of underwriter codes and names.

Responses

Response samples

Content type
application/json
[
  • {
    },
  • {
    }
]

Get stock details

Returns detailed IPO-related data for a given stock.

path Parameters
ticker
required
string
Example: BBCA

Responses

Response samples

Content type
application/json
{
  • "ipo_status": "string",
  • "ticker_code": "string",
  • "image": "string",
  • "company_name": "string",
  • "sector": "string",
  • "subsector": "string",
  • "listing_board": "string",
  • "final_price": 0,
  • "line_of_business": "string",
  • "address": "string",
  • "website": "string",
  • "number_of_shares_offered": 0,
  • "%_of_total_shares": 0,
  • "participant_admin": {
    },
  • "book_building_opening": "string",
  • "book_building_closing": "string",
  • "lowest_book_building_price": 0,
  • "highest_book_building_price": 0,
  • "opening_of_offering_period": "string",
  • "closing_of_offering_period": "string",
  • "closing_date": "string",
  • "distribution_date": "string",
  • "listing_date": "string",
  • "ara_arb_percentage": "string",
  • "underwriters": [
    ],
  • "warrant": {
    },
  • "listing_price": {
    },
  • "performa": {
    },
  • "fundamental": {
    }
}

Get underwriter details

Returns information about a specific underwriter by code.

path Parameters
code
required
string
Example: MRG

Responses

Response samples

Content type
application/json
{
  • "underwriter": {
    },
  • "stocks": [
    ]
}