graphsense-python 2.9.5__tar.gz → 2.9.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/PKG-INFO +39 -38
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/README.md +38 -37
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/__init__.py +2 -2
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api/addresses_api.py +76 -46
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api/blocks_api.py +31 -19
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api/bulk_api.py +28 -19
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api/entities_api.py +70 -43
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api/general_api.py +19 -16
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api/rates_api.py +13 -10
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api/tags_api.py +49 -46
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api/tokens_api.py +13 -10
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api/txs_api.py +67 -43
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api_client.py +2 -2
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/configuration.py +3 -3
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/exceptions.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/__init__.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/actor.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/actor_context.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/address.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/address_tag.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/address_tags.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/address_tx.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/address_tx_utxo.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/address_txs.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/block.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/block_at_date.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/concept.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/currency_stats.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/entity.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/entity_addresses.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/external_conversion.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/http_validation_error.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/label_summary.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/labeled_item_ref.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/link.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/link_utxo.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/links.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/links_inner.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/location_inner.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/neighbor_address.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/neighbor_addresses.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/neighbor_entities.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/neighbor_entity.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/rate.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/rates.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/related_address.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/related_addresses.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/search_result.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/search_result_by_currency.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/search_result_level1.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/search_result_level2.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/search_result_level3.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/search_result_level4.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/search_result_level5.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/search_result_level6.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/stats.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/tag.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/tag_cloud_entry.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/tag_summary.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/taxonomy.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/token_config.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/token_configs.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/tx.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/tx_account.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/tx_ref.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/tx_summary.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/tx_utxo.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/tx_value.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/user_reported_tag.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/user_tag_report_response.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/validation_error.py +9 -4
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/models/values.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/rest.py +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense_python.egg-info/PKG-INFO +39 -38
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/pyproject.toml +1 -1
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api/__init__.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/api_response.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/compat.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/__init__.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/actor.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/actor_context.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/address.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/address_tag.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/address_tags.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/address_tx.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/address_tx_utxo.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/address_txs.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/block.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/block_at_date.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/concept.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/currency_stats.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/entity.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/entity_addresses.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/external_conversion.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/http_validation_error.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/label_summary.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/labeled_item_ref.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/link.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/link_utxo.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/links.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/links_inner.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/location_inner.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/neighbor_address.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/neighbor_addresses.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/neighbor_entities.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/neighbor_entity.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/rate.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/rates.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/related_address.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/related_addresses.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/search_result.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/search_result_by_currency.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/search_result_level1.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/search_result_level2.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/search_result_level3.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/search_result_level4.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/search_result_level5.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/search_result_level6.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/stats.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/tag.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/tag_cloud_entry.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/tag_summary.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/taxonomy.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/token_config.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/token_configs.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/tx.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/tx_account.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/tx_ref.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/tx_summary.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/tx_utxo.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/tx_value.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/user_reported_tag.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/user_tag_report_response.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/validation_error.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/model/values.py +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense/py.typed +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense_python.egg-info/SOURCES.txt +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense_python.egg-info/dependency_links.txt +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense_python.egg-info/requires.txt +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/graphsense_python.egg-info/top_level.txt +0 -0
- {graphsense_python-2.9.5 → graphsense_python-2.9.7}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: graphsense-python
|
|
3
|
-
Version: 2.9.
|
|
3
|
+
Version: 2.9.7
|
|
4
4
|
Summary: GraphSense API
|
|
5
5
|
Author-email: Iknaio Cryptoasset Analytics GmbH <contact@iknaio.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -17,14 +17,15 @@ Requires-Dist: pydantic>=2
|
|
|
17
17
|
Requires-Dist: typing-extensions>=4.7.1
|
|
18
18
|
|
|
19
19
|
# graphsense-python
|
|
20
|
-
GraphSense API provides programmatic access to
|
|
20
|
+
GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, entities, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation.
|
|
21
21
|
|
|
22
22
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
23
23
|
|
|
24
|
-
- API version: 2.9.
|
|
25
|
-
- Package version: 2.9.
|
|
24
|
+
- API version: 2.9.7
|
|
25
|
+
- Package version: 2.9.7
|
|
26
26
|
- Generator version: 7.19.0
|
|
27
27
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
28
|
+
For more information, please visit [https://www.iknaio.com/](https://www.iknaio.com/)
|
|
28
29
|
|
|
29
30
|
## Requirements.
|
|
30
31
|
|
|
@@ -116,42 +117,42 @@ All URIs are relative to *https://api.iknaio.com*
|
|
|
116
117
|
Class | Method | HTTP request | Description
|
|
117
118
|
------------ | ------------- | ------------- | -------------
|
|
118
119
|
*AddressesApi* | [**get_address**](docs/AddressesApi.md#get_address) | **GET** /{currency}/addresses/{address} | Get an address
|
|
119
|
-
*AddressesApi* | [**get_address_entity**](docs/AddressesApi.md#get_address_entity) | **GET** /{currency}/addresses/{address}/entity | Get the entity
|
|
120
|
-
*AddressesApi* | [**get_tag_summary_by_address**](docs/AddressesApi.md#get_tag_summary_by_address) | **GET** /{currency}/addresses/{address}/tag_summary | Get attribution tag summary
|
|
121
|
-
*AddressesApi* | [**list_address_links**](docs/AddressesApi.md#list_address_links) | **GET** /{currency}/addresses/{address}/links |
|
|
122
|
-
*AddressesApi* | [**list_address_neighbors**](docs/AddressesApi.md#list_address_neighbors) | **GET** /{currency}/addresses/{address}/neighbors |
|
|
123
|
-
*AddressesApi* | [**list_address_txs**](docs/AddressesApi.md#list_address_txs) | **GET** /{currency}/addresses/{address}/txs |
|
|
124
|
-
*AddressesApi* | [**list_related_addresses**](docs/AddressesApi.md#list_related_addresses) | **GET** /{currency}/addresses/{address}/related_addresses |
|
|
125
|
-
*AddressesApi* | [**list_tags_by_address**](docs/AddressesApi.md#list_tags_by_address) | **GET** /{currency}/addresses/{address}/tags |
|
|
126
|
-
*BlocksApi* | [**get_block**](docs/BlocksApi.md#get_block) | **GET** /{currency}/blocks/{height} | Get
|
|
127
|
-
*BlocksApi* | [**get_block_by_date**](docs/BlocksApi.md#get_block_by_date) | **GET** /{currency}/block_by_date/{date} | Get block
|
|
128
|
-
*BlocksApi* | [**list_block_txs**](docs/BlocksApi.md#list_block_txs) | **GET** /{currency}/blocks/{height}/txs |
|
|
129
|
-
*BulkApi* | [**bulk_csv**](docs/BulkApi.md#bulk_csv) | **POST** /{currency}/bulk.csv/{operation} |
|
|
130
|
-
*BulkApi* | [**bulk_json**](docs/BulkApi.md#bulk_json) | **POST** /{currency}/bulk.json/{operation} |
|
|
131
|
-
*EntitiesApi* | [**get_entity**](docs/EntitiesApi.md#get_entity) | **GET** /{currency}/entities/{entity} | Get
|
|
132
|
-
*EntitiesApi* | [**list_address_tags_by_entity**](docs/EntitiesApi.md#list_address_tags_by_entity) | **GET** /{currency}/entities/{entity}/tags |
|
|
133
|
-
*EntitiesApi* | [**list_entity_addresses**](docs/EntitiesApi.md#list_entity_addresses) | **GET** /{currency}/entities/{entity}/addresses |
|
|
134
|
-
*EntitiesApi* | [**list_entity_links**](docs/EntitiesApi.md#list_entity_links) | **GET** /{currency}/entities/{entity}/links |
|
|
135
|
-
*EntitiesApi* | [**list_entity_neighbors**](docs/EntitiesApi.md#list_entity_neighbors) | **GET** /{currency}/entities/{entity}/neighbors |
|
|
136
|
-
*EntitiesApi* | [**list_entity_txs**](docs/EntitiesApi.md#list_entity_txs) | **GET** /{currency}/entities/{entity}/txs |
|
|
137
|
-
*EntitiesApi* | [**search_entity_neighbors**](docs/EntitiesApi.md#search_entity_neighbors) | **GET** /{currency}/entities/{entity}/search | Search
|
|
138
|
-
*GeneralApi* | [**get_statistics**](docs/GeneralApi.md#get_statistics) | **GET** /stats | Get statistics
|
|
139
|
-
*GeneralApi* | [**search**](docs/GeneralApi.md#search) | **GET** /search |
|
|
140
|
-
*RatesApi* | [**get_exchange_rates**](docs/RatesApi.md#get_exchange_rates) | **GET** /{currency}/rates/{height} | Get exchange rates
|
|
141
|
-
*TagsApi* | [**get_actor**](docs/TagsApi.md#get_actor) | **GET** /tags/actors/{actor} | Get
|
|
142
|
-
*TagsApi* | [**get_actor_tags**](docs/TagsApi.md#get_actor_tags) | **GET** /tags/actors/{actor}/tags |
|
|
143
|
-
*TagsApi* | [**list_address_tags**](docs/TagsApi.md#list_address_tags) | **GET** /tags |
|
|
120
|
+
*AddressesApi* | [**get_address_entity**](docs/AddressesApi.md#get_address_entity) | **GET** /{currency}/addresses/{address}/entity | Get the entity for an address
|
|
121
|
+
*AddressesApi* | [**get_tag_summary_by_address**](docs/AddressesApi.md#get_tag_summary_by_address) | **GET** /{currency}/addresses/{address}/tag_summary | Get address attribution tag summary
|
|
122
|
+
*AddressesApi* | [**list_address_links**](docs/AddressesApi.md#list_address_links) | **GET** /{currency}/addresses/{address}/links | List transactions between two addresses
|
|
123
|
+
*AddressesApi* | [**list_address_neighbors**](docs/AddressesApi.md#list_address_neighbors) | **GET** /{currency}/addresses/{address}/neighbors | List neighboring addresses
|
|
124
|
+
*AddressesApi* | [**list_address_txs**](docs/AddressesApi.md#list_address_txs) | **GET** /{currency}/addresses/{address}/txs | List transactions involving an address
|
|
125
|
+
*AddressesApi* | [**list_related_addresses**](docs/AddressesApi.md#list_related_addresses) | **GET** /{currency}/addresses/{address}/related_addresses | List related addresses
|
|
126
|
+
*AddressesApi* | [**list_tags_by_address**](docs/AddressesApi.md#list_tags_by_address) | **GET** /{currency}/addresses/{address}/tags | List attribution tags for an address
|
|
127
|
+
*BlocksApi* | [**get_block**](docs/BlocksApi.md#get_block) | **GET** /{currency}/blocks/{height} | Get block details by height
|
|
128
|
+
*BlocksApi* | [**get_block_by_date**](docs/BlocksApi.md#get_block_by_date) | **GET** /{currency}/block_by_date/{date} | Get block at or before a date
|
|
129
|
+
*BlocksApi* | [**list_block_txs**](docs/BlocksApi.md#list_block_txs) | **GET** /{currency}/blocks/{height}/txs | List transactions in a block
|
|
130
|
+
*BulkApi* | [**bulk_csv**](docs/BulkApi.md#bulk_csv) | **POST** /{currency}/bulk.csv/{operation} | Stream bulk operation results as CSV
|
|
131
|
+
*BulkApi* | [**bulk_json**](docs/BulkApi.md#bulk_json) | **POST** /{currency}/bulk.json/{operation} | Stream bulk operation results as JSON
|
|
132
|
+
*EntitiesApi* | [**get_entity**](docs/EntitiesApi.md#get_entity) | **GET** /{currency}/entities/{entity} | Get entity details
|
|
133
|
+
*EntitiesApi* | [**list_address_tags_by_entity**](docs/EntitiesApi.md#list_address_tags_by_entity) | **GET** /{currency}/entities/{entity}/tags | List entity address tags
|
|
134
|
+
*EntitiesApi* | [**list_entity_addresses**](docs/EntitiesApi.md#list_entity_addresses) | **GET** /{currency}/entities/{entity}/addresses | List entity addresses
|
|
135
|
+
*EntitiesApi* | [**list_entity_links**](docs/EntitiesApi.md#list_entity_links) | **GET** /{currency}/entities/{entity}/links | List transactions between entities
|
|
136
|
+
*EntitiesApi* | [**list_entity_neighbors**](docs/EntitiesApi.md#list_entity_neighbors) | **GET** /{currency}/entities/{entity}/neighbors | List neighboring entities
|
|
137
|
+
*EntitiesApi* | [**list_entity_txs**](docs/EntitiesApi.md#list_entity_txs) | **GET** /{currency}/entities/{entity}/txs | List entity transactions
|
|
138
|
+
*EntitiesApi* | [**search_entity_neighbors**](docs/EntitiesApi.md#search_entity_neighbors) | **GET** /{currency}/entities/{entity}/search | Search entity neighborhood
|
|
139
|
+
*GeneralApi* | [**get_statistics**](docs/GeneralApi.md#get_statistics) | **GET** /stats | Get platform statistics for supported currencies
|
|
140
|
+
*GeneralApi* | [**search**](docs/GeneralApi.md#search) | **GET** /search | Search addresses, transactions, actors, and labels
|
|
141
|
+
*RatesApi* | [**get_exchange_rates**](docs/RatesApi.md#get_exchange_rates) | **GET** /{currency}/rates/{height} | Get fiat exchange rates at a block height
|
|
142
|
+
*TagsApi* | [**get_actor**](docs/TagsApi.md#get_actor) | **GET** /tags/actors/{actor} | Get actor details by ID
|
|
143
|
+
*TagsApi* | [**get_actor_tags**](docs/TagsApi.md#get_actor_tags) | **GET** /tags/actors/{actor}/tags | List tags associated with an actor
|
|
144
|
+
*TagsApi* | [**list_address_tags**](docs/TagsApi.md#list_address_tags) | **GET** /tags | List address tags by label
|
|
144
145
|
*TagsApi* | [**list_concepts**](docs/TagsApi.md#list_concepts) | **GET** /tags/taxonomies/{taxonomy}/concepts | List concepts for a taxonomy
|
|
145
146
|
*TagsApi* | [**list_taxonomies**](docs/TagsApi.md#list_taxonomies) | **GET** /tags/taxonomies | List all taxonomies
|
|
146
|
-
*TagsApi* | [**report_tag**](docs/TagsApi.md#report_tag) | **POST** /tags/report-tag |
|
|
147
|
-
*TokensApi* | [**list_supported_tokens**](docs/TokensApi.md#list_supported_tokens) | **GET** /{currency}/supported_tokens |
|
|
148
|
-
*TxsApi* | [**get_spending_txs**](docs/TxsApi.md#get_spending_txs) | **GET** /{currency}/txs/{tx_hash}/spending |
|
|
149
|
-
*TxsApi* | [**get_spent_in_txs**](docs/TxsApi.md#get_spent_in_txs) | **GET** /{currency}/txs/{tx_hash}/spent_in |
|
|
150
|
-
*TxsApi* | [**get_tx**](docs/TxsApi.md#get_tx) | **GET** /{currency}/txs/{tx_hash} | Get
|
|
151
|
-
*TxsApi* | [**get_tx_conversions**](docs/TxsApi.md#get_tx_conversions) | **GET** /{currency}/txs/{tx_hash}/conversions |
|
|
152
|
-
*TxsApi* | [**get_tx_io**](docs/TxsApi.md#get_tx_io) | **GET** /{currency}/txs/{tx_hash}/{io} |
|
|
153
|
-
*TxsApi* | [**list_token_txs**](docs/TxsApi.md#list_token_txs) | **GET** /{currency}/token_txs/{tx_hash} |
|
|
154
|
-
*TxsApi* | [**list_tx_flows**](docs/TxsApi.md#list_tx_flows) | **GET** /{currency}/txs/{tx_hash}/flows |
|
|
147
|
+
*TagsApi* | [**report_tag**](docs/TagsApi.md#report_tag) | **POST** /tags/report-tag | Submit a user-reported tag
|
|
148
|
+
*TokensApi* | [**list_supported_tokens**](docs/TokensApi.md#list_supported_tokens) | **GET** /{currency}/supported_tokens | List supported tokens for a currency
|
|
149
|
+
*TxsApi* | [**get_spending_txs**](docs/TxsApi.md#get_spending_txs) | **GET** /{currency}/txs/{tx_hash}/spending | List source transactions
|
|
150
|
+
*TxsApi* | [**get_spent_in_txs**](docs/TxsApi.md#get_spent_in_txs) | **GET** /{currency}/txs/{tx_hash}/spent_in | List spending transactions
|
|
151
|
+
*TxsApi* | [**get_tx**](docs/TxsApi.md#get_tx) | **GET** /{currency}/txs/{tx_hash} | Get transaction details by hash
|
|
152
|
+
*TxsApi* | [**get_tx_conversions**](docs/TxsApi.md#get_tx_conversions) | **GET** /{currency}/txs/{tx_hash}/conversions | List DeFi conversions in a transaction
|
|
153
|
+
*TxsApi* | [**get_tx_io**](docs/TxsApi.md#get_tx_io) | **GET** /{currency}/txs/{tx_hash}/{io} | List transaction inputs or outputs
|
|
154
|
+
*TxsApi* | [**list_token_txs**](docs/TxsApi.md#list_token_txs) | **GET** /{currency}/token_txs/{tx_hash} | List token transfers in a transaction
|
|
155
|
+
*TxsApi* | [**list_tx_flows**](docs/TxsApi.md#list_tx_flows) | **GET** /{currency}/txs/{tx_hash}/flows | List transaction asset flows
|
|
155
156
|
|
|
156
157
|
|
|
157
158
|
## Documentation For Models
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# graphsense-python
|
|
2
|
-
GraphSense API provides programmatic access to
|
|
2
|
+
GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, entities, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation.
|
|
3
3
|
|
|
4
4
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
5
|
|
|
6
|
-
- API version: 2.9.
|
|
7
|
-
- Package version: 2.9.
|
|
6
|
+
- API version: 2.9.7
|
|
7
|
+
- Package version: 2.9.7
|
|
8
8
|
- Generator version: 7.19.0
|
|
9
9
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
10
|
+
For more information, please visit [https://www.iknaio.com/](https://www.iknaio.com/)
|
|
10
11
|
|
|
11
12
|
## Requirements.
|
|
12
13
|
|
|
@@ -98,42 +99,42 @@ All URIs are relative to *https://api.iknaio.com*
|
|
|
98
99
|
Class | Method | HTTP request | Description
|
|
99
100
|
------------ | ------------- | ------------- | -------------
|
|
100
101
|
*AddressesApi* | [**get_address**](docs/AddressesApi.md#get_address) | **GET** /{currency}/addresses/{address} | Get an address
|
|
101
|
-
*AddressesApi* | [**get_address_entity**](docs/AddressesApi.md#get_address_entity) | **GET** /{currency}/addresses/{address}/entity | Get the entity
|
|
102
|
-
*AddressesApi* | [**get_tag_summary_by_address**](docs/AddressesApi.md#get_tag_summary_by_address) | **GET** /{currency}/addresses/{address}/tag_summary | Get attribution tag summary
|
|
103
|
-
*AddressesApi* | [**list_address_links**](docs/AddressesApi.md#list_address_links) | **GET** /{currency}/addresses/{address}/links |
|
|
104
|
-
*AddressesApi* | [**list_address_neighbors**](docs/AddressesApi.md#list_address_neighbors) | **GET** /{currency}/addresses/{address}/neighbors |
|
|
105
|
-
*AddressesApi* | [**list_address_txs**](docs/AddressesApi.md#list_address_txs) | **GET** /{currency}/addresses/{address}/txs |
|
|
106
|
-
*AddressesApi* | [**list_related_addresses**](docs/AddressesApi.md#list_related_addresses) | **GET** /{currency}/addresses/{address}/related_addresses |
|
|
107
|
-
*AddressesApi* | [**list_tags_by_address**](docs/AddressesApi.md#list_tags_by_address) | **GET** /{currency}/addresses/{address}/tags |
|
|
108
|
-
*BlocksApi* | [**get_block**](docs/BlocksApi.md#get_block) | **GET** /{currency}/blocks/{height} | Get
|
|
109
|
-
*BlocksApi* | [**get_block_by_date**](docs/BlocksApi.md#get_block_by_date) | **GET** /{currency}/block_by_date/{date} | Get block
|
|
110
|
-
*BlocksApi* | [**list_block_txs**](docs/BlocksApi.md#list_block_txs) | **GET** /{currency}/blocks/{height}/txs |
|
|
111
|
-
*BulkApi* | [**bulk_csv**](docs/BulkApi.md#bulk_csv) | **POST** /{currency}/bulk.csv/{operation} |
|
|
112
|
-
*BulkApi* | [**bulk_json**](docs/BulkApi.md#bulk_json) | **POST** /{currency}/bulk.json/{operation} |
|
|
113
|
-
*EntitiesApi* | [**get_entity**](docs/EntitiesApi.md#get_entity) | **GET** /{currency}/entities/{entity} | Get
|
|
114
|
-
*EntitiesApi* | [**list_address_tags_by_entity**](docs/EntitiesApi.md#list_address_tags_by_entity) | **GET** /{currency}/entities/{entity}/tags |
|
|
115
|
-
*EntitiesApi* | [**list_entity_addresses**](docs/EntitiesApi.md#list_entity_addresses) | **GET** /{currency}/entities/{entity}/addresses |
|
|
116
|
-
*EntitiesApi* | [**list_entity_links**](docs/EntitiesApi.md#list_entity_links) | **GET** /{currency}/entities/{entity}/links |
|
|
117
|
-
*EntitiesApi* | [**list_entity_neighbors**](docs/EntitiesApi.md#list_entity_neighbors) | **GET** /{currency}/entities/{entity}/neighbors |
|
|
118
|
-
*EntitiesApi* | [**list_entity_txs**](docs/EntitiesApi.md#list_entity_txs) | **GET** /{currency}/entities/{entity}/txs |
|
|
119
|
-
*EntitiesApi* | [**search_entity_neighbors**](docs/EntitiesApi.md#search_entity_neighbors) | **GET** /{currency}/entities/{entity}/search | Search
|
|
120
|
-
*GeneralApi* | [**get_statistics**](docs/GeneralApi.md#get_statistics) | **GET** /stats | Get statistics
|
|
121
|
-
*GeneralApi* | [**search**](docs/GeneralApi.md#search) | **GET** /search |
|
|
122
|
-
*RatesApi* | [**get_exchange_rates**](docs/RatesApi.md#get_exchange_rates) | **GET** /{currency}/rates/{height} | Get exchange rates
|
|
123
|
-
*TagsApi* | [**get_actor**](docs/TagsApi.md#get_actor) | **GET** /tags/actors/{actor} | Get
|
|
124
|
-
*TagsApi* | [**get_actor_tags**](docs/TagsApi.md#get_actor_tags) | **GET** /tags/actors/{actor}/tags |
|
|
125
|
-
*TagsApi* | [**list_address_tags**](docs/TagsApi.md#list_address_tags) | **GET** /tags |
|
|
102
|
+
*AddressesApi* | [**get_address_entity**](docs/AddressesApi.md#get_address_entity) | **GET** /{currency}/addresses/{address}/entity | Get the entity for an address
|
|
103
|
+
*AddressesApi* | [**get_tag_summary_by_address**](docs/AddressesApi.md#get_tag_summary_by_address) | **GET** /{currency}/addresses/{address}/tag_summary | Get address attribution tag summary
|
|
104
|
+
*AddressesApi* | [**list_address_links**](docs/AddressesApi.md#list_address_links) | **GET** /{currency}/addresses/{address}/links | List transactions between two addresses
|
|
105
|
+
*AddressesApi* | [**list_address_neighbors**](docs/AddressesApi.md#list_address_neighbors) | **GET** /{currency}/addresses/{address}/neighbors | List neighboring addresses
|
|
106
|
+
*AddressesApi* | [**list_address_txs**](docs/AddressesApi.md#list_address_txs) | **GET** /{currency}/addresses/{address}/txs | List transactions involving an address
|
|
107
|
+
*AddressesApi* | [**list_related_addresses**](docs/AddressesApi.md#list_related_addresses) | **GET** /{currency}/addresses/{address}/related_addresses | List related addresses
|
|
108
|
+
*AddressesApi* | [**list_tags_by_address**](docs/AddressesApi.md#list_tags_by_address) | **GET** /{currency}/addresses/{address}/tags | List attribution tags for an address
|
|
109
|
+
*BlocksApi* | [**get_block**](docs/BlocksApi.md#get_block) | **GET** /{currency}/blocks/{height} | Get block details by height
|
|
110
|
+
*BlocksApi* | [**get_block_by_date**](docs/BlocksApi.md#get_block_by_date) | **GET** /{currency}/block_by_date/{date} | Get block at or before a date
|
|
111
|
+
*BlocksApi* | [**list_block_txs**](docs/BlocksApi.md#list_block_txs) | **GET** /{currency}/blocks/{height}/txs | List transactions in a block
|
|
112
|
+
*BulkApi* | [**bulk_csv**](docs/BulkApi.md#bulk_csv) | **POST** /{currency}/bulk.csv/{operation} | Stream bulk operation results as CSV
|
|
113
|
+
*BulkApi* | [**bulk_json**](docs/BulkApi.md#bulk_json) | **POST** /{currency}/bulk.json/{operation} | Stream bulk operation results as JSON
|
|
114
|
+
*EntitiesApi* | [**get_entity**](docs/EntitiesApi.md#get_entity) | **GET** /{currency}/entities/{entity} | Get entity details
|
|
115
|
+
*EntitiesApi* | [**list_address_tags_by_entity**](docs/EntitiesApi.md#list_address_tags_by_entity) | **GET** /{currency}/entities/{entity}/tags | List entity address tags
|
|
116
|
+
*EntitiesApi* | [**list_entity_addresses**](docs/EntitiesApi.md#list_entity_addresses) | **GET** /{currency}/entities/{entity}/addresses | List entity addresses
|
|
117
|
+
*EntitiesApi* | [**list_entity_links**](docs/EntitiesApi.md#list_entity_links) | **GET** /{currency}/entities/{entity}/links | List transactions between entities
|
|
118
|
+
*EntitiesApi* | [**list_entity_neighbors**](docs/EntitiesApi.md#list_entity_neighbors) | **GET** /{currency}/entities/{entity}/neighbors | List neighboring entities
|
|
119
|
+
*EntitiesApi* | [**list_entity_txs**](docs/EntitiesApi.md#list_entity_txs) | **GET** /{currency}/entities/{entity}/txs | List entity transactions
|
|
120
|
+
*EntitiesApi* | [**search_entity_neighbors**](docs/EntitiesApi.md#search_entity_neighbors) | **GET** /{currency}/entities/{entity}/search | Search entity neighborhood
|
|
121
|
+
*GeneralApi* | [**get_statistics**](docs/GeneralApi.md#get_statistics) | **GET** /stats | Get platform statistics for supported currencies
|
|
122
|
+
*GeneralApi* | [**search**](docs/GeneralApi.md#search) | **GET** /search | Search addresses, transactions, actors, and labels
|
|
123
|
+
*RatesApi* | [**get_exchange_rates**](docs/RatesApi.md#get_exchange_rates) | **GET** /{currency}/rates/{height} | Get fiat exchange rates at a block height
|
|
124
|
+
*TagsApi* | [**get_actor**](docs/TagsApi.md#get_actor) | **GET** /tags/actors/{actor} | Get actor details by ID
|
|
125
|
+
*TagsApi* | [**get_actor_tags**](docs/TagsApi.md#get_actor_tags) | **GET** /tags/actors/{actor}/tags | List tags associated with an actor
|
|
126
|
+
*TagsApi* | [**list_address_tags**](docs/TagsApi.md#list_address_tags) | **GET** /tags | List address tags by label
|
|
126
127
|
*TagsApi* | [**list_concepts**](docs/TagsApi.md#list_concepts) | **GET** /tags/taxonomies/{taxonomy}/concepts | List concepts for a taxonomy
|
|
127
128
|
*TagsApi* | [**list_taxonomies**](docs/TagsApi.md#list_taxonomies) | **GET** /tags/taxonomies | List all taxonomies
|
|
128
|
-
*TagsApi* | [**report_tag**](docs/TagsApi.md#report_tag) | **POST** /tags/report-tag |
|
|
129
|
-
*TokensApi* | [**list_supported_tokens**](docs/TokensApi.md#list_supported_tokens) | **GET** /{currency}/supported_tokens |
|
|
130
|
-
*TxsApi* | [**get_spending_txs**](docs/TxsApi.md#get_spending_txs) | **GET** /{currency}/txs/{tx_hash}/spending |
|
|
131
|
-
*TxsApi* | [**get_spent_in_txs**](docs/TxsApi.md#get_spent_in_txs) | **GET** /{currency}/txs/{tx_hash}/spent_in |
|
|
132
|
-
*TxsApi* | [**get_tx**](docs/TxsApi.md#get_tx) | **GET** /{currency}/txs/{tx_hash} | Get
|
|
133
|
-
*TxsApi* | [**get_tx_conversions**](docs/TxsApi.md#get_tx_conversions) | **GET** /{currency}/txs/{tx_hash}/conversions |
|
|
134
|
-
*TxsApi* | [**get_tx_io**](docs/TxsApi.md#get_tx_io) | **GET** /{currency}/txs/{tx_hash}/{io} |
|
|
135
|
-
*TxsApi* | [**list_token_txs**](docs/TxsApi.md#list_token_txs) | **GET** /{currency}/token_txs/{tx_hash} |
|
|
136
|
-
*TxsApi* | [**list_tx_flows**](docs/TxsApi.md#list_tx_flows) | **GET** /{currency}/txs/{tx_hash}/flows |
|
|
129
|
+
*TagsApi* | [**report_tag**](docs/TagsApi.md#report_tag) | **POST** /tags/report-tag | Submit a user-reported tag
|
|
130
|
+
*TokensApi* | [**list_supported_tokens**](docs/TokensApi.md#list_supported_tokens) | **GET** /{currency}/supported_tokens | List supported tokens for a currency
|
|
131
|
+
*TxsApi* | [**get_spending_txs**](docs/TxsApi.md#get_spending_txs) | **GET** /{currency}/txs/{tx_hash}/spending | List source transactions
|
|
132
|
+
*TxsApi* | [**get_spent_in_txs**](docs/TxsApi.md#get_spent_in_txs) | **GET** /{currency}/txs/{tx_hash}/spent_in | List spending transactions
|
|
133
|
+
*TxsApi* | [**get_tx**](docs/TxsApi.md#get_tx) | **GET** /{currency}/txs/{tx_hash} | Get transaction details by hash
|
|
134
|
+
*TxsApi* | [**get_tx_conversions**](docs/TxsApi.md#get_tx_conversions) | **GET** /{currency}/txs/{tx_hash}/conversions | List DeFi conversions in a transaction
|
|
135
|
+
*TxsApi* | [**get_tx_io**](docs/TxsApi.md#get_tx_io) | **GET** /{currency}/txs/{tx_hash}/{io} | List transaction inputs or outputs
|
|
136
|
+
*TxsApi* | [**list_token_txs**](docs/TxsApi.md#list_token_txs) | **GET** /{currency}/token_txs/{tx_hash} | List token transfers in a transaction
|
|
137
|
+
*TxsApi* | [**list_tx_flows**](docs/TxsApi.md#list_tx_flows) | **GET** /{currency}/txs/{tx_hash}/flows | List transaction asset flows
|
|
137
138
|
|
|
138
139
|
|
|
139
140
|
## Documentation For Models
|
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
"""
|
|
6
6
|
GraphSense API
|
|
7
7
|
|
|
8
|
-
GraphSense API provides programmatic access to
|
|
8
|
+
GraphSense API provides programmatic access to blockchain analytics data across multiple ledgers. Use it to explore addresses, entities, blocks, transactions, tags, token activity, and exchange-rate context, and to integrate investigation workflows into your own applications and automation. # noqa: E501
|
|
9
9
|
|
|
10
10
|
Contact: contact@iknaio.com
|
|
11
11
|
Generated by: https://openapi-generator.tech
|
|
12
12
|
"""
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
__version__ = "2.9.
|
|
15
|
+
__version__ = "2.9.7"
|
|
16
16
|
|
|
17
17
|
# Define package exports
|
|
18
18
|
__all__ = [
|