curl /api \
--request POST \
--header 'Content-Type: application/json' \
--data '{
"apikey": "请登录后获取apikey",
"apiname": "limit_pool",
"fields": "symbol,name,tradedate,type,is_break,limit_times,fd_amount,pct_chg,amount,turnover_z,first_time,last_time,limit_detail,open_times,limit_type",
"params": {
"type": [
"u",
"ub",
"d",
"db",
"bu",
"bd"
],
"filters": [
{
"field": "is_st",
"op": "eq",
"value": false
},
{
"field": "limit_times",
"op": "gte",
"value": 2
},
{
"field": "fd_amount",
"op": "gt",
"value": 100000000
}
],
"order_by": "fd_amount",
"order_dir": "desc",
"limit": 100,
"offset": 0
}
}'