All URIs are relative to https://api.bybit.com
| Method | HTTP request | Description |
|---|---|---|
| symbol_get | GET /v2/public/symbols | Query Symbols. |
object symbol_get()
Query Symbols.
from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.SymbolApi()
try:
# Query Symbols.
api_response = api_instance.symbol_get()
pprint(api_response)
except ApiException as e:
print("Exception when calling SymbolApi->symbol_get: %s\n" % e)This endpoint does not need any parameter.
object
No authorization required
- 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]