> ## 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.

# searchAssets



## OpenAPI

````yaml openapi-spec/solana-rpc/searchAssets.yaml post /
openapi: 3.0.3
info:
  title: Raze Solana RPC — searchAssets (DAS)
  description: >
    Helius-compatible DAS search (v1 subset). Requires at least one filter:

    `creatorAddress`, `authorityAddress`, or text (`name`, `symbol`,
    `searchTerm`, `query`).
  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: searchAssets
      operationId: searchAssets
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Request'
            examples:
              bySymbol:
                value:
                  jsonrpc: '2.0'
                  id: 1
                  method: searchAssets
                  params:
                    symbol: BONK
                    limit: 20
      responses:
        '200':
          description: JSON-RPC paginated asset search
          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:
            - searchAssets
        params:
          type: object
          properties:
            creatorAddress:
              type: string
            authorityAddress:
              type: string
            name:
              type: string
            symbol:
              type: string
            searchTerm:
              type: string
            query:
              type: string
            limit:
              type: integer
              default: 50
            page:
              type: integer
              default: 1

````