All URIs are relative to https://api.opendota.com/api
| Method | HTTP request | Description |
|---|---|---|
| benchmarks_get | GET /benchmarks | GET /benchmarks |
InlineResponse20020 benchmarks_get(hero_id)
GET /benchmarks
Benchmarks of average stat values for a hero
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.BenchmarksApi()
hero_id = 'hero_id_example' # str | Hero ID
try:
# GET /benchmarks
api_response = api_instance.benchmarks_get(hero_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling BenchmarksApi->benchmarks_get: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| hero_id | str | Hero ID |
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]