Skip to main content
GET
/
api
/
v1
/
contract-interactions
/
network
/
{network}
/
tx
/
{txId}
Get Transaction Receipt
curl --request GET \
  --url https://sandbox.oumla.com/api/v1/contract-interactions/network/{network}/tx/{txId} \
  --header 'x-api-key: <api-key>'
{
  "receipt": {
    "transactionHash": "0x1234567890abcdef",
    "blockNumber": 123,
    "blockHash": "<string>",
    "transactionIndex": 123,
    "from": "<string>",
    "to": "<string>",
    "gasUsed": "<string>",
    "effectiveGasPrice": "<string>",
    "status": 123,
    "logs": [
      {}
    ]
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication. Obtain your API key from the dashboard.

Headers

x-sdk-version
string
default:1.0.0

SDK version header

Path Parameters

network
enum<string>
required

Network

Available options:
tBTC,
tETH,
AVAX,
FUJI,
SANDBOX
txId
string
required

Transaction ID

Response

Successfully retrieved transaction receipt

Transaction receipt response object

receipt
object

Transaction receipt object from blockchain