Skip to main content

Get transaction by hash

GET 

/v1/transactions/hash/:hash

Get transaction by hash

This endpoint retrieves detailed information about a specific blockchain transaction using its hash. It supports filtering by chain and up to a certain date. The response includes transaction type, hash, creation time, sender and receiver details, asset data, and gas usage information.

Request

Path Parameters

    hash stringrequired

    Transaction hash

Query Parameters

    chain string

    Chain

    until_date string

    Until date

Responses

Transaction found

Schema
    blockNumber stringnullable
    chainId int32nullable
    createdAt stringrequired
    from objectrequired
    accountId uuidnullable
    accountName stringnullable
    address stringrequired
    userId uuidnullable
    userName stringnullable
    gasPrice stringnullable
    hash stringrequired
    receiptGasUsed stringnullable
    receivedAssetData objectnullable
    address stringrequired
    assetType stringrequired
    chainId int32required
    coingeckoId stringnullable
    decimals int32nullable
    fiatValue doublenullable
    id uuidrequired
    name stringnullable
    symbol stringnullable
    value int64[]nullable
    sendedAssetData objectnullable
    address stringrequired
    assetType stringrequired
    chainId int32required
    coingeckoId stringnullable
    decimals int32nullable
    fiatValue doublenullable
    id uuidrequired
    name stringnullable
    symbol stringnullable
    value int64[]nullable
    to objectrequired
    accountId uuidnullable
    accountName stringnullable
    address stringrequired
    contactId uuidnullable
    contactName stringnullable
    totalGasFiatValue doublenullable
    type stringnullable
Loading...