Skip to main content
GET
/
wallet-transactions
/
{id}
Get details of a specific wallet transaction
curl --request GET \
  --url https://api.platform.dakota.xyz/wallet-transactions/{id} \
  --header 'x-api-key: <api-key>'
{
  "id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
  "wallet_id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
  "status": "timed_out",
  "network_id": "ethereum-mainnet",
  "from": "<string>",
  "to": "<string>",
  "transaction_hash": "0x165cd37b4c644c2921454429e7f9358d18a45e14",
  "transaction_type": "transfer",
  "amount": "100.56",
  "asset": "USD"
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Unique identifier of the wallet transaction KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

Response

Wallet transaction details

Transaction details representing a transfer of funds from a crypto wallet.

id
string
required

KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

wallet_id
string
required

KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

status
enum<string>
required

Current status of a transaction.

Available options:
timed_out,
not_started,
in_progress,
awaiting_confirmation,
pending,
processing,
completed,
invalid,
failed,
canceled,
reversed,
rejected,
broadcasted,
pending_return,
returned
network_id
enum<string>

Identifier for a blockchain network

Available options:
ethereum-mainnet,
ethereum-sepolia,
ethereum-goerli,
ethereum-holesky,
solana-mainnet,
solana-devnet,
solana-testnet,
base-mainnet,
base-sepolia,
arbitrum-mainnet,
arbitrum-sepolia,
optimism-mainnet,
optimism-sepolia,
avalanche-mainnet,
avalanche-fuji,
polygon-mainnet,
polygon-amoy
Required string length: 1 - 30
Example:

"ethereum-mainnet"

from
string

The source address

to
string

The destination address

transaction_hash
string

The transaction hash

Example:

"0x165cd37b4c644c2921454429e7f9358d18a45e14"

transaction_type
enum<string>

Type of transaction

Available options:
transfer,
evm_contract_call
amount
string

The transaction amount

Example:

"100.56"

asset
string

ISO 4217 symbol representing a fiat asset.

Required string length: 3
Example:

"USD"