CSF
Retrieve cash settlement futures contract data including specifications and trading information.
GET/3.0/market/quote/csf
Description
This endpoint returns cash settlement futures contract data, which includes contract specifications, pricing, and market data for cash-settled futures contracts listed on the exchange.
Request
Authentication
- Type: Bearer Token
- Required: Yes
Parameters
This endpoint does not accept any query parameters.
Response
Success Response (200)
{
"status": "ok",
"message": "",
"count": 2292,
"data": [
{
"date": "2024-11-29 16:46:23",
"status": 1,
"symbol": "PTC-NOV",
"open": 0,
"high": 0,
"low": 0,
"close": 20.34,
"ldcp": 32.11,
"volume": 0,
"ldcv": 5200500,
"change": 0,
"change_percent": 0,
"ucap": 35.32,
"lcap": 28.9
},
{
"date": "2025-05-30 16:47:17",
"status": 0,
"symbol": "TRG-MAY",
"open": 62.14,
"high": 62.14,
"low": 60.4,
"close": 61.3,
"ldcp": 61.9,
"volume": 17294500,
"ldcv": 0,
"change": -0.6,
"change_percent": -0.0097,
"ucap": 68.09,
"lcap": 55.71
},
]
}
Response Fields
| Field | Type | Description |
|---|---|---|
date | string | Data timestamp (YYYY-MM-DD HH:MM:SS) |
status | integer | Contract status (1=active, 0=inactive/expired) |
symbol | string | Cash settlement futures contract symbol |
open | number | Opening price |
high | number | Day's high price |
low | number | Day's low price |
close | number | Closing price |
ldcp | number | Last day's closing price |
volume | number | Trading volume |
ldcv | number | Last day's closing volume |
change | number | Price change from previous close |
change_percent | number | Percentage change from previous close |
ucap | number | Upper circuit/cap price |
lcap | number | Lower circuit/cap price |
Error Responses
For detailed Common Error responses, see the Error Handling.
Examples
Get All CSF Contracts
curl -X GET "https://csapis.com/3.0/market/quote/csf" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Use Cases
- Index Tracking: Track index futures with cash settlement
- Hedging: Use CSF for portfolio hedging strategies
- Speculation: Trade CSF contracts for index exposure
- Price Discovery: Monitor index futures pricing
- Market Analysis: Analyze futures market trends and volatility