Get a Fee Delegation Transaction

Returns a single fee delegation transaction. You can find out the KRW and USD price of the fees at the time of sending the transaction.

Request
Security:
path Parameters
transaction-hash
required
string

Transaction hash

header Parameters
x-chain-id
required
string

Kaia Network Chain ID (1001 or 8217)

Responses
200

The request is successful.

400

The request is not valid.

get/v2/history/fd/tx/{transaction-hash}
Request samples
curl -i -X GET \
  -u <username>:<password> \
  'https://wallet-api.klaytnapi.com/v2/history/fd/tx/{transaction-hash}' \
  -H 'x-chain-id: string'
Response samples
application/json
{
  • "chainId": 8217,
  • "chargedByKlay": "0.003877775",
  • "chargedByKrw": "4.3",
  • "chargedByPeb": "3877775000000000",
  • "chargedByUsd": "0.00374",
  • "feePayer": "0x85b98485444c89880cd9c48807cef727c296f2da",
  • "from": "0x9154cc66c18fd04632d6daf98af8de0a99801c6d",
  • "gasPrice": "0x5d21dba00",
  • "gasUsed": "0x25de7",
  • "krw": 1109.6,
  • "status": "0x1",
  • "timestamp": 1627012095,
  • "transactionHash": "0xa3fb324004b0e498f518a5dbd8dd02e93f31bdd14ab0005187a7ef5aa32e6643",
  • "typeInt": 41,
  • "usd": 0.96567,
  • "effectiveGasPrice": "0xba43b7400"
}