Skip to content

Get Transaction Detail

GET
/api/v1/wallets/{address}/transactions/{tx_hash}
curl --request GET \
--url https://api.qeychain.xyz/api/v1/wallets/example/transactions/example

Get detailed information for a single transaction.

Response includes:

  • Full transaction data
  • All lots affected (consumed and created)
  • Tax impact (realized G/L if applicable)
  • Complete lineage information
address
required
Address
string
tx_hash
required
Tx Hash
string
owned_wallets
Any of:
Array<string>

Successful Response

Media typeapplication/json
Response Get Transaction Detail Api V1 Wallets Address Transactions Tx Hash Get
object
key
additional properties
any
Examplegenerated
{}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}