GET
/
api
/
{chainId}
/
transaction
/
{transactionId}
curl --request GET \
  --url https://api.adamik.io/api/{chainId}/transaction/{transactionId} \
  --header 'Authorization: <api-key>'
{
  "transaction": {
    "raw": "<any>",
    "parsed": {
      "id": "<string>",
      "mode": "transfer",
      "state": "pending",
      "tokenId": "<string>",
      "blockHeight": "<string>",
      "timestamp": "<string>",
      "fees": {
        "amount": "<string>",
        "ticker": "<string>"
      },
      "gas": "<string>",
      "nonce": "<string>",
      "memo": "<string>",
      "senders": [
        {
          "address": "<string>",
          "amount": "<string>",
          "ticker": "<string>"
        }
      ],
      "recipients": [
        {
          "address": "<string>",
          "amount": "<string>",
          "ticker": "<string>"
        }
      ],
      "validators": {
        "source": {
          "address": "<string>",
          "amount": "<string>",
          "ticker": "<string>"
        },
        "target": {
          "address": "<string>",
          "amount": "<string>",
          "ticker": "<string>"
        }
      }
    }
  },
  "status": {
    "errors": [
      {
        "message": "<string>"
      }
    ],
    "warnings": [
      {
        "message": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

chainId
enum<string>
required
Available options:
algorand,
cosmoshub,
osmosis,
celestia,
dydx,
axelar,
ethereum,
sepolia,
holesky,
base,
base-sepolia,
optimism,
arbitrum,
bitcoin,
bitcoin-testnet,
polygon,
polygon-amoy,
bsc,
bsc-testnet,
linea,
linea-sepolia,
avalanche,
gnosis,
gnosis-chiado,
moonbeam,
moonriver,
moonbase,
fantom,
litecoin,
dogecoin,
ton,
injective,
akash,
neutron,
tron,
evmos,
juno,
sei,
stride,
kava
transactionId
string
required

Transaction ID. Usually a hash but can be different depending on the chain.

Query Parameters

include
string

Optional filter to request specific data. Use a single 'include' parameter with comma-separated values. Possible values are 'parsed' and 'raw'.

Response

200 - application/json
Successfully returns detailed data about the transaction on the specified blockchain.
transaction
object
required
status
object
required