Skip to main content
POST
/
api
/
jpx
/
equities
/
margin-trading
/jpx/equities/margin-trading
curl --request POST \
  --url https://api.anysite.io/api/jpx/equities/margin-trading \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300
}
'
[
  {
    "code": "<string>",
    "name": "<string>",
    "@type": "@jpx_margin_trading_entry",
    "section": "<string>",
    "loan_type": "<string>",
    "isin": "<string>",
    "outstanding_sell": 123,
    "outstanding_sell_change": 123,
    "outstanding_buy": 123,
    "outstanding_buy_change": 123,
    "sale_purchase_ratio": 123,
    "date": "<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 margin trading 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_margin_trading_entry
section
string | null
loan_type
string | null
isin
string | null
outstanding_sell
number | null
outstanding_sell_change
number | null
outstanding_buy
number | null
outstanding_buy_change
number | null
sale_purchase_ratio
number | null
date
string | null