StealthTest
StealthTest Site
  • 👋Welcome to StealthTest
  • Features & Fundamentals
    • 🚰Faucet
    • 🗃️Logs
      • 📖Advanced Block Explorer
    • 💰Test Wallets
    • 🫂Teams & User Roles
      • 🎟️How to Create a Team
    • 🏢Smart Contract Repository
  • StealthTest API
    • 👨‍💻StealthTest API Reference Overview
    • 📖API Reference
      • Get Environments
      • Get Environment
      • Create Environment
      • Delete Environment
      • Get Wallet Information
      • Fund Wallet
    • 🎛️API Management
  • StealthTest Guides
    • 🧬Connecting to StealthTest Networks
      • 🦊Metamask
      • 3️⃣Thirdweb
      • 🪙Coinbase Wallet
    • ⚗️Test Wallet Import
      • 🦊Metamask Wallet Import
    • ⚡Testing with Remix
    • 🍬Testing with Truffle
    • 👷‍♂️Testing with Hardhat
    • 🍨Testing with Brownie
    • 🌲Testing with Web3.js + Cypress
Powered by GitBook
LogoLogo
On this page

Was this helpful?

  1. StealthTest API
  2. API Reference

Get Wallet Information

Requests wallet information for a given network. Returns the token balance, public address. Can be executed to validate when wallets are used for transactions and to confirm balances after.

PreviousDelete EnvironmentNextFund Wallet

Last updated 1 year ago

Was this helpful?

curl 'https://api.nameless.io/v1/environments/{environmentId}/wallet/{walletAddress}?network={network}
--header 'x-api-key: <Your API Key>' \
--header 'Content-Type: application/json'
{
    "data": {
        "walletAddress": "0x4559b1771b1d7C1846d91a91335273C3a28f9395",
        "privateKey": "0xf5d82a795ec5c5751161334378841e7a765182a047ee071bdfb1184f67b78d76",
        "balance": "100",
        "rpcUrl": "https://e7d831a4-df3a-433e-85fe-0b815bf63ec5.ethereum.nameless.io"
    },
    "success": true
}
📖
Page cover image
get

Get Wallet balance.

Path parameters
environmentIdstringRequired

Environment ID. (GET /environments to see the list of your Environments)

walletAddressstringRequired

Wallet public address. (GET /environments to see the list of your Environments with Wallet details)

Query parameters
networkstringRequired

Network where wallet resides. (Example 'ethereum')

Responses
200
Success
401
Unauthorized
500
Internal Server Error
get
GET /v1/environments/{environmentId}/wallet/{{walletAddress}} HTTP/1.1
Host: api.nameless.io
Accept: */*

No content