v1

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-107095124.5 KB
Wallet data endpoints

Simulate a wallet transaction

Simulate a wallet transaction. Authentication with an API key is required.

post/user/{address}/wallet/simulate

Path parameters

addressstring required

The address to simulate a transaction. Supported addresses include EVM or Solana.

Headers

Authorizationstring required

The JWT access token that authorizes the request

Request body

serializedTxstring

Serialized transaction request

Response

Simulated transaction results

successboolean

Indicates transaction success

logsstring[]

Transaction logs

errorMessagestring

Error message associated with transaction

Example response

[
  {
    "success": true,
    "logs": [
      "Log entry 1"
    ],
    "results": {
      "delta": -1,
      "metadata": {
        "tokenName": "USD Coin",
        "tokenSymbol": "USDC",
        "tokenLogo": "https://path.to/logo.png"
      }
    },
    "errorMessage": "An error message"
  }
]