Skip to main content
POST
/
api
/
jpx
/
listings
/
constituents
/jpx/listings/constituents
curl --request POST \
  --url https://api.anysite.io/api/jpx/listings/constituents \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "series_filter": "Core30"
}
'
[
  {
    "code": "<string>",
    "name": "<string>",
    "@type": "@jpx_listing_constituent",
    "date": "<string>",
    "sector": "<string>",
    "weight": 123,
    "new_index_series": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of constituent entries to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
series_filter
string | null

Filter by TOPIX New Index Series name (e.g. 'Core30', 'Large70', 'Mid400'). Case-insensitive.

Example:

"Core30"

Response

Successful Response

code
string
required
name
string
required
@type
string
default:@jpx_listing_constituent
date
string | null
sector
string | null
weight
number | null
new_index_series
string | null