메인 콘텐츠로 건너뛰기
GET
/
api
/
market-data
/
quote
/
trades
체결 내역 가져오기
curl --request GET \
  --url https://openapi.fcontext.com/api/market-data/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
    }
  ]
}

인증

x-api-key
string
header
필수

계정 설정에서 생성한 Financial Context key입니다. x-api-key: <key>로 전송하세요.

쿼리 매개변수

symbol
string
필수
count
integer
기본값:20

반환할 체결 레코드 수입니다. 기본값은 20, 최대값은 1000입니다.

필수 범위: 1 <= x <= 1000

응답

체결 목록

trades
object[]