DFC
Retrieve dividend futures contract data including contract specifications and pricing information.
GET/3.0/market/quote/dfc
Description
This endpoint returns dividend futures contract data, which includes contract details, specifications, current pricing, and contract characteristics for dividend-based futures instruments 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 DFC Contracts
curl -X GET "https://csapis.com/3.0/market/quote/dfc" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Use Cases
- Dividend Tracking: Monitor dividend futures contracts
- Hedging Strategies: Use contracts for dividend yield hedging
- Price Discovery: Track dividend-based futures pricing
- Market Analysis: Analyze dividend contract activity and trends
- Portfolio Management: Manage dividend-related derivative positions