Skip to main content
POST
/
api
/
jpx
/
statistics
/
investor-type
/jpx/statistics/investor-type
curl --request POST \
  --url https://api.anysite.io/api/jpx/statistics/investor-type \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "date": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "week": "<string>",
    "market": "<string>",
    "investor_type": "<string>",
    "@type": "@jpx_investor_type_entry",
    "buy_shares": 123,
    "sell_shares": 123,
    "net_shares": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
date
string
required

Reference date YYYYMMDD. Returns data for the nearest trading week on or before this date.

Minimum string length: 8
Examples:

"20240101"

"20231215"

count
integer
required

Number of investor-type rows to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

week
string
required
market
string
required
investor_type
string
required
@type
string
default:@jpx_investor_type_entry
buy_shares
number | null
sell_shares
number | null
net_shares
number | null