> ## Documentation Index
> Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Basic Wallet Information

> Gets all tokens in a wallet with current value in USD (lightweight, non-cached option)



## OpenAPI

````yaml /data-api/openapi.json get /wallet/{owner}/basic
openapi: 3.1.0
info:
  title: Solana Tracker Data API
  description: >-
    Solana Tracker Data API for token prices, holders, trades, charts, wallet
    data, risk signals, and market analytics.
  version: 1.0.0
  contact:
    email: contact@solanatracker.io
servers:
  - url: https://data.solanatracker.io
    description: Production server
security:
  - apiKey: []
paths:
  /wallet/{owner}/basic:
    get:
      tags:
        - Wallet
      summary: Get Basic Wallet Information
      description: >-
        Gets all tokens in a wallet with current value in USD (lightweight,
        non-cached option)
      parameters:
        - name: owner
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WalletBasicResponse'
              example:
                tokens:
                  - address: So11111111111111111111111111111111111111111
                    balance: 0.019911506
                    value: 3.6143897773934883
                    price:
                      quote: 181.5226722375238
                      usd: 181.5226722375238
                    marketCap:
                      quote: 99213713748.1989
                      usd: 99213713748.1989
                    liquidity:
                      quote: 14187570.69498935
                      usd: 14187570.69498935
                  - address: 9BT13kNGQFKvSj2BibHPKmpxxSnqMFUEEZEMQ5SNpump
                    balance: 35145.6526
                    value: 0.1358466724606335
                    price:
                      usd: 0.0000038652482572093
                      quote: 1.6897453884302e-8
                    marketCap:
                      usd: 3863.1654435176
                      quote: 16.888348583436
                    liquidity:
                      usd: 7629.3186104034
                      quote: 33.35259492
                  - address: EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm
                    balance: 0.078177
                    value: 0.03798727245783123
                    price:
                      usd: 0.48591366332593
                      quote: 0.00267735845235
                    marketCap:
                      usd: 485349964.8012
                      quote: 2674252.5034466
                    liquidity:
                      usd: 10991626.048437
                      quote: 60563.275180256
                  - address: AF7CYuqRw61atGBVT9LpxaXuSW9RuGmfnSAEgaHppump
                    balance: 2143.21592
                    value: 0.007500701071651285
                    price:
                      usd: 0.0000034997412074334
                      quote: 2.7995661589663e-8
                    marketCap:
                      usd: 3499.7412074334
                      quote: 27.995661589663
                    liquidity:
                      usd: 7505.524527655
                      quote: 60.039332132
                total: 3.795724423383604
                totalSol: 0.020910447975426186
components:
  schemas:
    WalletBasicResponse:
      type: object
      properties:
        tokens:
          type: array
          items:
            type: object
            properties:
              address:
                type: string
              balance:
                type: number
              value:
                type: number
              price:
                type: object
                properties:
                  quote:
                    type: number
                  usd:
                    type: number
              marketCap:
                type: object
                properties:
                  quote:
                    type: number
                  usd:
                    type: number
              liquidity:
                type: object
                properties:
                  quote:
                    type: number
                  usd:
                    type: number
        total:
          type: number
        totalSol:
          type: number
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````