Skip to main content
Version: IOTA

IOTA Client Python Library API Reference

Note that in the following APIs, the corresponding exception will be returned if an error occurs. Also for all the optional values, the default values are the same as the ones in the Rust version.

Client

constructor(network (optional), storage (optional), password (optional), polling_interval (optional)): AccountManager

Creates a new instance of the Client.

ParamTypeDefaultDescription
[network]strundefinedThe network
[primary_node_jwt_name_password]list[str]undefinedAn array of array with node URLs and optional JWT and basic auth name and password (length 1 is only the url, length 2 is url with JWT, length 3 is url with basic auth name and password and length 4 is url with JWT and basic auth name and password)
[primary_pow_node_jwt_name_password]list[str]undefinedAn array of array with node URLs and optional JWT and basic auth name and password (length 1 is only the url, length 2 is url with JWT, length 3 is url with basic auth name and password and length 4 is url with JWT and basic auth name and password)
[nodes_name_password]list[]list[str]undefinedAn array of array with node URLs and optional JWT and basic auth name and password (length 1 is only the url, length 2 is url with JWT, length 3 is url with basic auth name and password and length 4 is url with JWT and basic auth name and password)
[permanodes_name_password]list[]list[str]undefinedAn array of array with node URLs and optional JWT and basic auth name and password (length 1 is only the url, length 2 is url with JWT, length 3 is url with basic auth name and password and length 4 is url with JWT and basic auth name and password)
[node_sync_interval]intundefinedThe interval for the node syncing process
[node_sync_disabled]boolundefinedDisables the node syncing process. Every node will be considered healthy and ready to use
[node_pool_urls]strundefinedAn array of node pool URLs
[quorum]boolfalseBool to define if quorum should be used
[quorum_size]int3An int that defines how many nodes should be used for quorum
[quorum_threshold]int66Define the % of nodes that need to return the same response to accept it
[request_timeout]intundefinedSets the default HTTP request timeout
[api_timeout]dictundefinedThe API to set the request timeout. Key: 'GetHealth', 'GetInfo', 'GetPeers', 'GetTips', 'PostMessage', 'GetOutput', 'GetMilestone' Value: timeout in milliseconds
[local_pow]boolundefinedFlag determining if PoW should be done locally or remotely
[tips_interval]intundefinedTime between requests for new tips during PoW
[mqtt_broker_options][BrokerOptions](#brokeroptions)undefinedSets the options for the MQTT connection with the node

Returns The constructed Client.

Full Node APIs

get_health(): bool

Gets the node health status.

Returns whether the node is healthy.

get_info(): NodeInfoWrapper

Gets information about the node.

Returns the NodeInfoWrapper.

get_peers(): list[PeerDto]

Gets peers of the node.

Returns the list of PeerDto.

get_tips(): list[str]

Gets non-lazy tips.

Returns two non-lazy tips' message ids in list.

post_message(msg): str

Submits a message.

ParamTypeDefaultDescription
[msg][Message](#message)undefinedThe message to submit

Returns the message id of the submitted message.

get_output(output_id): OutputResponse

Gets the UTXO outputs associated with the given output id.

ParamTypeDefaultDescription
[output_id]strundefinedThe id of the output to search

Returns the OutputResponse[#outputresponse].

get_address_balance(address): BalanceAddressResponse

Gets the balance in the address.

ParamTypeDefaultDescription
[address]list[str]undefinedThe address Bech32 string

Returns the BalanceAddressResponse.

get_address_outputs(address, options (optional)): list[UtxoInput]

Gets the UTXO outputs associated with the given address.

ParamTypeDefaultDescription
[address]strundefinedThe address Bech32 string
[options][[AddressOutputsOptions](#addressoutputsoptions)]undefinedThe query filters

Returns the list of UtxoInput.

find_outputs(output_ids (optional), addresses (optional)): list[OutputResponse]

Gets the UTXO outputs associated with the given output ids and addresses.

ParamTypeDefaultDescription
[output_ids]list[str]undefinedThe list of addresses to search
[addresses]list[str]undefinedThe list of output ids to search

Returns the list of OutputResponse.

get_milestone(index): MilestoneDto

Gets the milestone by the given index.

ParamTypeDefaultDescription
[index]intundefinedThe index of the milestone

Returns the MilestoneDto.

get_milestone_utxo_changes(index): MilestoneUTXOChanges

Gets the utxo changes by the given milestone index.

ParamTypeDefaultDescription
[index]intundefinedThe index of the milestone

Returns the MilestoneUTXOChanges.

get_receipts(): Vec

Get all receipts.

Returns the ReceiptDto.

get_receipts_migrated_at(index): Vec

Get all receipts for a given milestone index.

ParamTypeDefaultDescription
[index]intundefinedThe index of the milestone

Returns the ReceiptDto.

get_treasury(): TreasuryResponse

Get the treasury amount.

Returns the TreasuryResponse.

get_included_message(): Message

Get the included message of a transaction.

ParamTypeDescription
[index]strThe id of the transaction

Returns the new Message.

High-Level APIs

message(seed (optional), account_index (optional), initial_address_index (optional), inputs (optional), input_range_begin (optional), input_range_end (optional), outputs (optional), dust_allowance_outputs (optional), index (optional), index_raw (optional), data (optional), data_str (optional), parents (optional)): Message

Build a message.

ParamTypeDefaultDescription
[seed]strundefinedThe hex-encoded seed of the account to spend
[account_index]intundefinedThe account index
[initial_address_index]intundefinedThe initial address index
[inputs]list[UtxoInput]undefinedUtxoInputs
[input_range_begin]intundefinedThe begin index of the input
[input_range_end]intundefinedThe end index of the input
[outputs]list[[Output](#output)]undefinedOutputs
[dust_allowance_outputs]list[[Output](#output)]undefinedDust allowance output to the transaction
[index]strundefinedThe indexation string
[index_raw]list[int]undefinedThe indexation byte array
[data]list[int]undefinedThe data in bytes
[data_str]strundefinedThe data string
[parents]list[str]undefinedThe message ids of the parents

Returns the built Message.

get_message_metadata(message_id): MessageMetadataResponse

ParamTypeDefaultDescription
[message_id]strundefinedThe message id

Returns the MessageMetadataResponse.

get_message_data(message_id): Message

Gets the message data from the message id.

ParamTypeDefaultDescription
[message_id]strundefinedThe message id

Returns the Message.

get_message_raw(message_id): str

Gets the raw message string from the message id.

ParamTypeDefaultDescription
[message_id]strundefinedThe message id

Returns the raw message string.

get_message_children(message_id): list[str]

Gets the children of the given message.

ParamTypeDefaultDescription
[message_id]strundefinedThe message id

Returns the list of children strings.

get_message_id(payload_str): str

Get the message id from the payload string.

ParamTypeDefaultDescription
payload_strstrundefinedThe payload string from the mqtt message event

Returns The identifier of message.

get_message_index(index): list[str]

Gets the list of message indices from the message_id.

ParamTypeDefaultDescription
[index]strundefinedThe identifier of message

Returns the list of message ids.

find_messages(indexation_keys (optional), message_ids (optional)): list[Message]

Finds all messages associated with the given indexation keys and message ids.

ParamTypeDefaultDescription
[indexation_keys]list[str]undefinedThe list of indexations keys too search
[message_ids]list[str]undefinedThe list of message ids to search

Returns the list of the found messages.

get_unspent_address(seed, account_index (optional), initial_address_index(optional)): (str, int)

Gets a valid unspent address.

ParamTypeDefaultDescription
[seed]strundefinedThe hex-encoded seed to search
[account_index]intundefinedThe account index
[initial_address_index]intundefinedThe initial address index

Returns a tuple with type of (str, int) as the address and corresponding index in the account.

get_addresses(seed, account_index (optional), input_range_begin (optional), input_range_end (optional) get_all (optional)): list[(str, bool (optional))]

Finds addresses from the seed regardless of their validity.

ParamTypeDefaultDescription
[seed]strundefinedThe hex-encoded seed to search
[account_index]intundefinedThe account index
[input_range_begin]intundefinedThe begin of the address range
[input_range_end]intundefinedThe end of the address range
[get_all]boolundefinedGet all addresses

Returns a list of tuples with type of (str, int) as the address and corresponding index in the account.

get_balance(seed, account_index (optional), initial_address_index(optional), gap_limit(optional)): int

Get balance on a given seed and its wallet account index.

ParamTypeDefaultDescription
[seed]strundefinedThe hex-encoded seed to search
[account_index]intundefinedThe account index
[initial_address_index]intundefinedThe initial address index
[gap_limit]intundefinedThe gap limit

Returns the amount of balance.

get_address_balances(addresses): list[AddressBalancePair]

Get the balance in iotas for the given addresses.

ParamTypeDefaultDescription
[addresses]list[str]undefinedThe list of addresses to search

Returns the list of AddressBalancePair.

generate_mnemonic()

Returns a random generated Bip39 mnemonic with the English word list.

Returns A String

mnemonic_to_hex_seed(mnemonic)

Returns the seed hex encoded.

ParamTypeDefaultDescription
mnemonicstrundefinedBip39 mnemonic with words from the English word list.

Returns A String

find_inputs(addresses, amount: u64)

Return the inputs from addresses for a provided amount (useful for offline signing)

ParamTypeDefaultDescription
addresseslist[str]undefinedThe input address list.
amountstrundefinedThe input amount.

Returns The list of UtxoInput.

bech32_to_hex(bech32)

Returns a parsed hex String from bech32.

ParamTypeDefaultDescription
bech32strundefinedThe address Bech32 string

Returns A String

hex_to_bech32(hex, bech32_hrp (optional))

Returns a parsed bech32 String from hex.

ParamTypeDefaultDescription
bech32strundefinedThe address Bech32 string
bech32_hrpstrundefinedThe Bech32 hrp string

Returns A String

hex_public_key_to_bech32_address(hex, bech32_hrp (optional))

Returns the bech32 address from the hex public key.

ParamTypeDefaultDescription
hexstrundefinedHex encoded public key
bech32_hrpstrundefinedThe Bech32 hrp string

Returns A String

is_address_valid(address): bool

Checks if a given address is valid.

ParamTypeDefaultDescription
addressstrundefinedThe address Bech32 string

Returns A boolean.

retry(message_id): (str, Message)

Retries (promotes or reattaches) the message associated with the given id.

ParamTypeDefaultDescription
[message_id]strundefinedThe message id

Returns the message id and the retried Message.

retry_until_included(message_id, interval (optional), max_attempts (optional)): list[(str, Message)]

Retries (promotes or reattaches) the message associated with the given id.

ParamTypeDefaultDescription
[message_id]strundefinedThe message id
intervalint5The interval in seconds in which we retry the message.
max_attemptsint40The maximum of attempts we retry the message.

Returns the message ids and Message of reattached messages.

consolidate_funds(seed, account_index, start_index, end_index): str

Function to consolidate all funds from a range of addresses to the address with the lowest index in that range

ParamTypeDescription
[seed]strThe seed
[account_index]intThe account index.
[start_index]intThe lowest address index, funds will be consolidated to this address.
[end_index]intThe address index until which funds will be consolidated

Returns the address to which the funds got consolidated, if any were available.

search_address(seed, bech32_hrp, account_index, start_index, end_index, address): (int, bool)

Function to find the index and address type of an address

ParamTypeDescription
[seed]strThe seed
[bech32_hrp]stringThe Bech32 HRP
[account_index]intThe account index
[start_index]intThe start address index
[end_index]intThe end address index (excluded)
[address]strThe address Bech32 string

Returns index and address type of an address.

reattach(message_id): (str, Message)

Reattaches the message associated with the given id.

ParamTypeDefaultDescription
[message_id]strundefinedThe message id

Returns the message id and the reattached Message.

promote(message_id): (str, Message)

Promotes the message associated with the given id.

ParamTypeDefaultDescription
[message_id]strundefinedThe message id

Returns the message id and the promoted Message.

MQTT APIs

subscribe_topic(topic, callback): void

Subscribe a topic and assign the associated callback.

ParamTypeDefaultDescription
[topic]strundefinedThe MQTT topic
[callback]functionundefinedThe callback function

subscribe_topics(topics, callback): void

Subscribe topics and assign the associated callbacks, respectively.

ParamTypeDefaultDescription
[topics]list[str]undefinedThe MQTT topics
[callback]functionundefinedThe callback functions

unsubscribe(): void

Unsubscribe all topics.

disconnect(): void

Disconnect the mqtt broker.

WalletAddress

A dict with the following key/value pairs.

message_metadata_response = {
'message_id': str,
'parent_message_ids': list[str],
'is_solid': bool,
'referenced_by_milestone_index': int, # (optional)
'milestone_index': int, # (optional)
'ledger_inclusion_state': LedgerInclusionStateDto, # (optional)
'conflict_reason': int, # (optional)
'should_promote:' bool # (optional)
'should_reattach': bool # (optional)
}

Please refer to LedgerInclusionStateDto for the details of this type.

BalanceAddressResponse

A dict with the following key/value pairs.

balance_for_address_response = {
'address_type': int,
'address': str,
'balance': int
}

AddressBalancePair

A dict with the following key/value pairs.

address_balance_pair = {
'address': str,
'balance': int
'dust_allowed': bool
}

MilestoneDto

A dict with the following key/value pairs.

milestoned_to = {
'index': int,
'timestamp': int,
'message_id': str
}

MilestoneUTXOChanges

A dict with the following key/value pairs.

milestone_utxo_changes = {
'index': int,
'created_outputs': list[str],
'consumed_outputs': list[str]
}

ReceiptDto

A dict with the following key/value pairs.

receiptDto = {
'receipt': Receipt,
'milestone_index': int,
}

TreasuryResponse

A dict with the following key/value pairs.

treasuryResponse = {
'milestone_id': str,
'amount': int,
}

UtxoInput

A dict with the following key/value pairs.

utxo_input = {
'transaction_id': list[int],
'index': int
}

OutputResponse

A dict with the following key/value pairs.

output_response = {
'message_id': str,
'transaction_id': str,
'output_index': int,
'is_spent': bool,
'output': OutputDto
}

Please refer to OutputDto for the details of this type.

OutputDto

A dict with the following key/value pairs.

output_dto = {
'treasury': TreasuryOutputDto, # (opitonal)
'signature_locked_single': SignatureLockedSingleOutputDto, # (opitonal)
'signature_locked_dust_allowance': SignatureLockedDustAllowanceOutputDto # (opitonal)
}

Please refer to TreasuryOutputDto, SignatureLockedSingleOutputDto, and SignatureLockedDustAllowanceOutputDto for the details of these types.

SignatureLockedSingleOutputDto

A dict with the following key/value pairs.

signature_locked_single_output_dto = {
'kind': int,
'address': AddressDto,
'amount': int
}

Please refer to AddressDto for the details of this type.

SignatureLockedDustAllowanceOutputDto

A dict with the following key/value pairs.

signature_locked_dust_allowance_output_dto = {
'kind': int,
'address': AddressDto,
'amount': int
}

Please refer to AddressDto for the details of this type.

pub struct TreasuryOutputDto {

A dict with the following key/value pairs.

treasury_output_dto = {
'kind': int,
'amount':int
}

AddressDto

A dict with the following key/value pairs.

address_dto = {
'ed25519': Ed25519AddressDto
}

Please refer to Ed25519AddressDto for the details of this type.

Ed25519AddressDto

A dict with the following key/value pairs.

ed25519_address_dto = {
'kind': int,
'address': str
}

Message

A dict with the following key/value pairs.

message = {
'message_id': str,
'network_id': int,
'parents': list[str],
'payload': Payload, # (optional)
'nonce': int
}

Please refer to Payload for the details of this type.

Payload

A dict with the following key/value pairs.

payload = {
'transaction': list[Transaction], # (optional)
'milestone': list[Milestone], # (optional)
'indexation': list[Indexation], # (optional)
}

Please refer to Transaction, Milestone, and Indexation for the details of these types.

Transaction

A dict with the following key/value pairs.

transaction = {
'essence': RegularEssence,
'unlock_blocks': list[UnlockBlock]
}

Please refer to RegularEssence, and UnlockBlock for the details of these types.

Milestone

A dict with the following key/value pairs.

milestone = {
'essence': MilestonePayloadEssence,
'signatures': list[list[int]]
}

Please refer to MilestonePayloadEssence for the details of this type.

MilestonePayloadEssence

A dict with the following key/value pairs.

milestone_payload_essence = {
'index': int,
'timestamp': int,
'parents': list[str],
'merkle_proof': list[int],
'next_pow_score': int,
'next_pow_score_milestone_index': int,
'public_keys': list[list[int]]
}

Indexation

A dict with the following key/value pairs.

indexation = {
'index': str,
'data': list[int]
}

RegularEssence

A dict with the following key/value pairs.

regular_essence = {
'inputs': list[Input],
'outputs': list[Output],
'payload': list[Payload]
}

Please refer to Input, Output, and Payload for the details of these types.

Output

A dict with the following key/value pairs.

output = {
'address': str,
'amount': int
}

Input

A dict with the following key/value pairs.

input = {
'transaction_id': str,
'index': int
}

UnlockBlock

A dict with the following key/value pairs.

unlock_block = {
'signature': Ed25519Signature, # (optional)
'reference': int # (optional)
}

Please refer to Ed25519Signature for the details of this type.

Ed25519Signature

A dict with the following key/value pairs.

ed25519_signature = {
'public_key': list[int],
'signature': list[int]
}

BrokerOptions

A dict with the following key/value pairs.

broker_options = {
'automatic_disconnect': bool,
'timeout': int,
'max_reconnection_attempts': int,
}

LedgerInclusionStateDto

A dict with the following key/value pairs.

ledger_inclusion_state_dto = {
'state': str
}

NodeInfoWrapper

A dict with the following key/value pairs.

nodeinfo_wrapper{
url: str,
nodeinfo: info_response,
}
info_response = {
'name': str,
'version': str,
'is_healthy': bool,
'network_id': str,
'bech32_hrp': str,
'min_pow_score': float,
'messages_per_second': float,
'referenced_messages_per_second': float,
'referenced_rate': float,
'latest_milestone_timestamp': u64,
'latest_milestone_index': int,
'confirmed_milestone_index': int,
'pruning_index': int,
'features': list[str],
'min_pow_score': float,
}

NetworkInfo

A dict with the following key/value pairs.

network_info = {
'network': str,
'network_id': int,
'bech32_hrp': str,
'min_pow_score': float,
'local_pow': bool,
'tips_interval': int,
}

PeerDto

A dict with the following key/value pairs.

peer_dto = {
'id': str,
'multi_addresses': list[str],
'alias': str, # (optional)
'relation': RelationDto,
'connected': bool,
'gossip': GossipDto, # (optional)
}

Please refer to RelationDto and GossipDto for the details of these types.

RelationDto

A dict with the following key/value pairs.

relation_dto = {
'relation': str
}

GossipDto

A dict with the following key/value pairs.

gossip_dto = {
'heartbeat': HeartbeatDto,
'metrics': MetricsDto
}

Please refer to HeartbeatDto and MetricsDto for the details of these types.

HeartbeatDto

A dict with the following key/value pairs.

heart_beat_dto = {
'solid_milestone_index': int,
'pruned_milestone_index': int,
'latest_milestone_index': int,
'connected_neighbors': int,
'synced_neighbors': int
}

MetricsDto

A dict with the following key/value pairs.

metrics_dto = {
'received_messages': int,
'known_messages': int,
'received_message_requests': int,
'received_milestone_requests': int,
'received_heartbeats': int,
'sent_messages': int,
'sent_message_requests': int,
'sent_milestone_requests': int,
'sent_heartbeats': int,
'dropped_packets': int,
}

AddressOutputsOptions

A dict with the following key/value pairs.

options = {
'include_spent': bool,
'output_type': string
}