Skip to main content
POST
/
api
/
jpx
/
listings
/
etf
/jpx/listings/etf
curl --request POST \
  --url https://api.anysite.io/api/jpx/listings/etf \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300
}
'
[
  {
    "code": "<string>",
    "name": "<string>",
    "@type": "@jpx_listed_etf",
    "period": "<string>",
    "margin_type": "<string>",
    "trading_unit": 123,
    "open": 123,
    "high": 123,
    "low": 123,
    "close": 123,
    "volume": 123,
    "trading_value": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of ETF/investment trust listing entries to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

code
string
required
name
string
required
@type
string
default:@jpx_listed_etf
period
string | null
margin_type
string | null
trading_unit
number | null
open
number | null
high
number | null
low
number | null
close
number | null
volume
number | null
trading_value
number | null