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

# Net Worth History



## OpenAPI

````yaml openapi.json GET /gateway/v1/wallet/net-worth
openapi: 3.1.0
info:
  title: Hermod
  version: 0.0.1
servers:
  - url: https://api.asksurf.ai
security: []
paths:
  /gateway/v1/wallet/net-worth:
    get:
      tags:
        - Wallet
      summary: Wallet Net Worth History
      description: >-
        Returns a time-series of the wallet's total net worth in USD.


        Returns ~288 data points at 5-minute intervals covering the last 24
        hours. Fixed window — no custom time range supported.
      operationId: wallet-net-worth
      parameters:
        - description: Wallet address (0x hex, base58, or ENS name like `vitalik.eth`)
          explode: false
          in: query
          name: address
          required: true
          schema:
            description: Wallet address (0x hex, base58, or ENS name like `vitalik.eth`)
            examples:
              - '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045'
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseWalletNetWorthPoint'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAPIError'
          description: Error
      security:
        - AccessToken: []
components:
  schemas:
    DataResponseWalletNetWorthPoint:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataResponseWalletNetWorthPoint.json
          format: uri
          readOnly: true
          type: string
        data:
          items:
            $ref: '#/components/schemas/WalletNetWorthPoint'
          type:
            - array
            - 'null'
        meta:
          $ref: '#/components/schemas/OffsetMeta'
      required:
        - data
        - meta
      type: object
    DataAPIError:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataAPIError.json
          format: uri
          readOnly: true
          type: string
        error:
          $ref: '#/components/schemas/DataAPIErrorDetail'
      required:
        - error
      type: object
    WalletNetWorthPoint:
      additionalProperties: false
      properties:
        timestamp:
          description: Unix timestamp in seconds
          format: int64
          type: integer
        usd_value:
          description: Total portfolio value in USD at this point in time
          format: double
          type: number
      required:
        - timestamp
        - usd_value
      type: object
    OffsetMeta:
      additionalProperties: false
      properties:
        cached:
          description: Whether this response was served from cache
          type: boolean
        credits_used:
          description: Credits deducted for this request
          format: int64
          type: integer
        limit:
          description: Maximum number of items returned in this response
          format: int64
          type: integer
        offset:
          description: Number of items skipped (pagination offset)
          format: int64
          type: integer
        total:
          description: >-
            Total number of matching items (before pagination). Omitted when
            total is unknown.
          format: int64
          type: integer
      required:
        - limit
        - offset
        - credits_used
        - cached
      type: object
    DataAPIErrorDetail:
      additionalProperties: false
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
      type: object

````