DLT Identifier

Many API endpoints support Distributed Ledger Technology (DLT) identifiers. These define the target blockchain and the target entity (account, wallet etc.) on the specific blockchain:

NameTypeDescriptionExample

dlt_type

String

blockchain type

"ethereum"

dlt_id

String

entity id (wallet address, tx hash)

0x52Ae12ABe5D8BD778BD5397F99cA900624CfADD4

Response Format

{
    data // Object/Array, optional - when no error occurred, actual content
    error: { // Object, optional - when there’s an error
        status // integer, HTTP status code
        messages: [ // Array (String), list of human readable error messages
        ]
    }
}

For all available endpoints and responses, see the API Reference.

Last updated