Transaction details
ETH Transaction details
API Endpoint: GET /api/ethereum/transaction/{transactionHash}
GET /api/ethereum/transaction/{transactionHash}
Description:
This endpoint retrieves detailed information about a specific Ethereum transaction based on its transaction hash.
Base URL:
Request
Method:
GET
URL:
/api/ethereum/transaction/{transactionHash}
Path Parameters:
transactionHash
String
Yes
The hash of the Ethereum transaction to retrieve.
Example Request:
Headers:
Authorization
String
Yes
Bearer token for authentication.
Example Header:
Response
The response will contain detailed information about the Ethereum transaction, including the transaction hash, status, block number, timestamp, the addresses involved (sender and recipient), value transferred in ETH, gas price, transaction fees, and any additional observations.
Fields in the Response:
data (Object): Contains the transaction data.
id (String): Transaction hash.
status (String): Transaction status (e.g., "Success").
block (String): Block number in which the transaction was included.
timestamp (String): The date and time when the transaction was executed.
from (String): Sender’s wallet address.
to (String): Recipient's wallet address.
valueETH (String): Value transferred in ETH.
valueDolar (String): Value transferred in USD (if available).
transactionFeeETH (String): Transaction fee in ETH.
transactionFeeDolar (String): Transaction fee in USD (if available).
gasPrice (String): Gas price in GWEI.
gweiETH (String): Gas price in ETH.
observation (String): Any additional information or notes regarding the transaction.
Example Response:
Code Examples
Last updated