All URIs are relative to /
Method | HTTP request | Description |
---|---|---|
api_v1_get_validators_get | GET /api/v1/GetValidators | |
api_v1_get_validators_type_get | GET /api/v1/GetValidators/{type} |
list[ValidatorResult] api_v1_get_validators_get()
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.ValidatorApi()
try:
api_response = api_instance.api_v1_get_validators_get()
pprint(api_response)
except ApiException as e:
print("Exception when calling ValidatorApi->api_v1_get_validators_get: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
list[ValidatorResult] api_v1_get_validators_type_get(type)
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.ValidatorApi()
type = 'type_example' # str |
try:
api_response = api_instance.api_v1_get_validators_type_get(type)
pprint(api_response)
except ApiException as e:
print("Exception when calling ValidatorApi->api_v1_get_validators_type_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
type | str |
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]