Skip to main content
GET
/
stocks
/
api
/
fetch
/
holder
/
{walletAddress}
curl "https://api.trusset.org/stocks/api/fetch/holder/0xAbC123..." \
  -H "X-API-Key: trusset_abc123xy_secret..."
{
  "success": true,
  "data": [
    {
      "tokenAddress": "0x1234567890abcdef1234567890abcdef12345678",
      "name": "Acme Corp Equity",
      "symbol": "ACME",
      "balance": "500"
    }
  ],
  "metadata": {
    "requestId": "550e8400-e29b-41d4-a716-446655440000",
    "timestamp": "2025-06-15T12:00:00.000Z",
    "instanceId": "inst_abc123"
  }
}
Returns all stock tokens that a given wallet holds within the authenticated instance. Useful for building portfolio views.

Path Parameters

walletAddress
string
required
Ethereum wallet address of the holder.

Response Fields

success
boolean
Request status.
data
object[]
Array of token holdings for the wallet.
curl "https://api.trusset.org/stocks/api/fetch/holder/0xAbC123..." \
  -H "X-API-Key: trusset_abc123xy_secret..."
{
  "success": true,
  "data": [
    {
      "tokenAddress": "0x1234567890abcdef1234567890abcdef12345678",
      "name": "Acme Corp Equity",
      "symbol": "ACME",
      "balance": "500"
    }
  ],
  "metadata": {
    "requestId": "550e8400-e29b-41d4-a716-446655440000",
    "timestamp": "2025-06-15T12:00:00.000Z",
    "instanceId": "inst_abc123"
  }
}