Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.16 KB

ChainApi.md

File metadata and controls

49 lines (32 loc) · 1.16 KB

swagger_client.ChainApi

All URIs are relative to /

Method HTTP request Description
api_v1_get_chains_get GET /api/v1/GetChains

api_v1_get_chains_get

list[ChainResult] api_v1_get_chains_get()

Example

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.ChainApi()

try:
    api_response = api_instance.api_v1_get_chains_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ChainApi->api_v1_get_chains_get: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

list[ChainResult]

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]