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

# Get User Traded Volume

> Get total traded volume for a specific user. Returns combined CLOB and AMM volume (both taker and maker sides) in whole USDC. This is the all-time cumulative trading volume, not the current portfolio value.



## OpenAPI

````yaml GET /portfolio/{account}/traded-volume
openapi: 3.0.0
info:
  title: Limitless Exchange API
  description: >-
    Production-ready REST API for prediction market trading, portfolio
    management, and market data on Limitless Exchange (Base L2).
  version: '1.0'
  contact:
    name: API Support
    url: https://limitless.exchange
    email: help@limitless.network
servers:
  - url: https://api.limitless.exchange
    description: Production API
security: []
tags:
  - name: Authentication
    description: User authentication and session management
  - name: Markets
    description: Browse, search, and analyze prediction markets
  - name: Market Navigation
    description: Navigation tree, market pages, and property filters
  - name: Trading
    description: Create, manage, and cancel orders
  - name: Portfolio
    description: Position tracking, trade history, and performance
  - name: API Tokens
    description: Scoped API token management for partner integrations
  - name: Partner Accounts
    description: Sub-account creation and allowance recovery for partner integrations
  - name: System
    description: Public API state and availability information
paths:
  /portfolio/{account}/traded-volume:
    get:
      tags:
        - Public Portfolio
      summary: User Total Volume
      description: >-
        Get total traded volume for a specific user. Returns combined CLOB and
        AMM volume (both taker and maker sides) in whole USDC. This is the
        all-time cumulative trading volume, not the current portfolio value.
      operationId: PublicPortfolioController_tradedVolume
      parameters:
        - name: account
          required: true
          in: path
          description: User Ethereum address
          schema:
            type: string
            example: '0x742d35Cc6634C0532925a3b844Bc454e4438f44e'
      responses:
        '200':
          description: User trading volume
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: string
                    description: >-
                      Total traded volume in whole USDC (no decimal divisor
                      needed). Includes both taker and maker volume across CLOB
                      and AMM trades.
                    example: '9702853'

````