Skip to main content
GET
/
api
/
aitaquote
/
quote
/
trades
获取标的成交明细
curl --request GET \
  --url https://fcontext.com/api/aitaquote/quote/trades \
  --header 'x-api-key: <api-key>'
{
  "trades": [
    {
      "price": "<string>",
      "volume": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "tradeType": "<string>",
      "direction": 123,
      "tradeSession": 123
    }
  ]
}

Authorizations

x-api-key
string
header
required

Financial Context key generated from account settings. Send it as x-api-key: <key>.

Query Parameters

symbol
string
required
count
integer
default:20

返回的成交记录数量,默认 20,最大 1000。

Required range: 1 <= x <= 1000

Response

成交明细列表

trades
object[]