All URIs are relative to https://api.bybit.com
| Method | HTTP request | Description |
|---|---|---|
| linear_funding_my_last_fee | GET /private/linear/funding/prev-funding | Get prev funding |
| linear_funding_predicted | GET /private/linear/funding/predicted-funding | Get predicted funding rate and funding fee. |
| linear_funding_prev_rate | GET /public/linear/funding/prev-funding-rate | Get prev funding |
object linear_funding_my_last_fee(symbol=symbol)
Get prev funding
This will get prev funding
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apiKey
configuration = swagger_client.Configuration()
configuration.api_key['api_key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api_key'] = 'Bearer'
# Configure API key authorization: apiSignature
configuration = swagger_client.Configuration()
configuration.api_key['sign'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['sign'] = 'Bearer'
# Configure API key authorization: timestamp
configuration = swagger_client.Configuration()
configuration.api_key['timestamp'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['timestamp'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.LinearFundingApi(swagger_client.ApiClient(configuration))
symbol = 'symbol_example' # str | (optional)
try:
# Get prev funding
api_response = api_instance.linear_funding_my_last_fee(symbol=symbol)
pprint(api_response)
except ApiException as e:
print("Exception when calling LinearFundingApi->linear_funding_my_last_fee: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| symbol | str | [optional] |
object
apiKey, apiSignature, timestamp
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object linear_funding_predicted(symbol)
Get predicted funding rate and funding fee.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apiKey
configuration = swagger_client.Configuration()
configuration.api_key['api_key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api_key'] = 'Bearer'
# Configure API key authorization: apiSignature
configuration = swagger_client.Configuration()
configuration.api_key['sign'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['sign'] = 'Bearer'
# Configure API key authorization: timestamp
configuration = swagger_client.Configuration()
configuration.api_key['timestamp'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['timestamp'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.LinearFundingApi(swagger_client.ApiClient(configuration))
symbol = 'symbol_example' # str | Contract type.
try:
# Get predicted funding rate and funding fee.
api_response = api_instance.linear_funding_predicted(symbol)
pprint(api_response)
except ApiException as e:
print("Exception when calling LinearFundingApi->linear_funding_predicted: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| symbol | str | Contract type. |
object
apiKey, apiSignature, timestamp
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object linear_funding_prev_rate(symbol)
Get prev funding
This will get prev funding rate
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apiKey
configuration = swagger_client.Configuration()
configuration.api_key['api_key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['api_key'] = 'Bearer'
# Configure API key authorization: apiSignature
configuration = swagger_client.Configuration()
configuration.api_key['sign'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['sign'] = 'Bearer'
# Configure API key authorization: timestamp
configuration = swagger_client.Configuration()
configuration.api_key['timestamp'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['timestamp'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.LinearFundingApi(swagger_client.ApiClient(configuration))
symbol = 'symbol_example' # str |
try:
# Get prev funding
api_response = api_instance.linear_funding_prev_rate(symbol)
pprint(api_response)
except ApiException as e:
print("Exception when calling LinearFundingApi->linear_funding_prev_rate: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| symbol | str |
object
apiKey, apiSignature, timestamp
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]