Properties
| Name | Type | Description |
|---|---|---|
| symbol | string | Futures symbol. |
| markPrice | string | Mark price. |
| indexPrice | string | Index price. |
| estimatedSettlePrice | string | Estimated settle price. |
| lastFundingRate | string | Last funding rate. |
| nextFundingTime | integer | Next funding time in milliseconds. |
| interestRate | string | Interest rate. |
| time | integer | Timestamp. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MarkPrice",
"title": "MarkPrice",
"type": "object",
"properties": {
"symbol": {
"type": "string",
"description": "Futures symbol."
},
"markPrice": {
"type": "string",
"description": "Mark price."
},
"indexPrice": {
"type": "string",
"description": "Index price."
},
"estimatedSettlePrice": {
"type": "string",
"description": "Estimated settle price."
},
"lastFundingRate": {
"type": "string",
"description": "Last funding rate."
},
"nextFundingTime": {
"type": "integer",
"format": "int64",
"description": "Next funding time in milliseconds."
},
"interestRate": {
"type": "string",
"description": "Interest rate."
},
"time": {
"type": "integer",
"format": "int64",
"description": "Timestamp."
}
}
}