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

# getAssetsByOwner



## OpenAPI

````yaml openapi-spec/solana-rpc/getAssetsByOwner.yaml post /
openapi: 3.0.3
info:
  title: Raze Solana RPC — getAssetsByOwner (DAS)
  description: >
    Helius-compatible DAS method. Lists fungible token holdings for a wallet,
    reshaped to DAS asset items.


    Backed by Raze History `GET /api/sol/tokens/owner/{owner}`.
  version: 1.0.0
servers:
  - url: https://rpc.raze.bot
    description: Raze global RPC edge — GeoDNS routes to the nearest region automatically
security: []
paths:
  /:
    post:
      summary: getAssetsByOwner
      operationId: getAssetsByOwner
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Request'
            examples:
              default:
                value:
                  jsonrpc: '2.0'
                  id: 1
                  method: getAssetsByOwner
                  params:
                    ownerAddress: '11111111111111111111111111111112'
                    limit: 100
                    page: 1
      responses:
        '200':
          description: JSON-RPC response with paginated `items`
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    Request:
      type: object
      required:
        - jsonrpc
        - method
        - params
      properties:
        jsonrpc:
          type: string
          enum:
            - '2.0'
        id:
          oneOf:
            - type: integer
            - type: string
        method:
          type: string
          enum:
            - getAssetsByOwner
        params:
          type: object
          required:
            - ownerAddress
          properties:
            ownerAddress:
              type: string
              description: Wallet address (base58)
            limit:
              type: integer
              default: 1000
            page:
              type: integer
              default: 1

````