graphsense / graphsense-python

A Python client for the GraphSense REST interface.
MIT License
19 stars 3 forks source link

list_tags raises ApiTypeError #6

Closed xlim7 closed 2 years ago

xlim7 commented 3 years ago

There seems to be an issue with list_tags:

with graphsense.ApiClient(configuration) as api_client:
    api_instance = tags_api.TagsApi(api_client) 
    try:
        # Returns address and entity tags associated with a given label
        api_response = api_instance.list_tags(label="sextortion", currency="btc")
        print(api_response)
    except graphsense.ApiException as e:
        print("Exception when calling TagsApi->list_tags: %s\n" % e)

ApiTypeError: Invalid type for variable 'received_data'. Required value type is list and passed type was dict at ['received_data']