You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 5, 2025. It is now read-only.
currency ="btc"# str | The cryptocurrency code (e.g., btc)
147
147
address ="1Archive1n2C579dMsAu3iC6tWzuQJz8dN"# str | The cryptocurrency address
148
+
include_actors =True# bool | Whether to include information about the actor behind the address (optional) if omitted the server will use the default value of True
148
149
149
150
# example passing only required values which don't have defaults set
150
151
try:
@@ -153,6 +154,15 @@ with graphsense.ApiClient(configuration) as api_client:
153
154
pprint(api_response)
154
155
except graphsense.ApiException as e:
155
156
print("Exception when calling AddressesApi->get_address_entity: %s\n"% e)
157
+
158
+
# example passing only required values which don't have defaults set
**currency** | **str**| The cryptocurrency code (e.g., btc) |
164
174
**address** | **str**| The cryptocurrency address |
175
+
**include_actors** | **bool**| Whether to include information about the actor behind the address | [optional] if omitted the server will use the default value of True
165
176
**_preload_content** | **bool** | If False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. | [optional] default is True.
Copy file name to clipboardExpand all lines: graphsense/__init__.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,13 @@
5
5
6
6
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
Copy file name to clipboardExpand all lines: graphsense/api/addresses_api.py
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
5
5
6
-
The version of the OpenAPI document: 1.7.0
6
+
The version of the OpenAPI document: 1.8.0
7
7
Contact: contact@ikna.io
8
8
Generated by: https://openapi-generator.tech
9
9
"""
@@ -197,6 +197,7 @@ def __get_address_entity(
197
197
address (str): The cryptocurrency address
198
198
199
199
Keyword Args:
200
+
include_actors (bool): Whether to include information about the actor behind the address. [optional] if omitted the server will use the default value of True
200
201
_return_http_data_only (bool): response data without head status
201
202
code and headers. Default is True.
202
203
_preload_content (bool): if False, the urllib3.HTTPResponse object
Copy file name to clipboardExpand all lines: graphsense/api/blocks_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
Copy file name to clipboardExpand all lines: graphsense/api/bulk_api.py
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
Copy file name to clipboardExpand all lines: graphsense/api/entities_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
Copy file name to clipboardExpand all lines: graphsense/api/general_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
Copy file name to clipboardExpand all lines: graphsense/api/rates_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
Copy file name to clipboardExpand all lines: graphsense/api/tags_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
GraphSense API provides programmatic access to various ledgers' addresses, entities, blocks, transactions and tags for automated and highly efficient forensics tasks. # noqa: E501
0 commit comments