All URIs are relative to https://api.opendota.com/api
Method | HTTP request | Description |
---|---|---|
records_field_get | GET /records/{field} | GET /records/{field} |
list[InlineResponse20029] records_field_get(field)
GET /records/{field}
Get top performances in a stat
from __future__ import print_function
import time
import od_python
from od_python.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = od_python.RecordsApi()
field = 'field_example' # str | Field name to query
try:
# GET /records/{field}
api_response = api_instance.records_field_get(field)
pprint(api_response)
except ApiException as e:
print("Exception when calling RecordsApi->records_field_get: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
field | str | Field name to query |
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]