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

# Get Swaps Summary

> Get swap summary statistics.

Args:
    network: Filter by network
    wallet_address: Filter by wallet address
    start_time: Start timestamp (unix seconds)
    end_time: End timestamp (unix seconds)

Returns:
    Summary statistics including volume, fees, success rate



## OpenAPI

````yaml /api-reference/openapi.json get /gateway/swaps/summary
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /gateway/swaps/summary:
    get:
      tags:
        - Gateway Swaps
      summary: Get Swaps Summary
      description: |-
        Get swap summary statistics.

        Args:
            network: Filter by network
            wallet_address: Filter by wallet address
            start_time: Start timestamp (unix seconds)
            end_time: End timestamp (unix seconds)

        Returns:
            Summary statistics including volume, fees, success rate
      operationId: get_swaps_summary_gateway_swaps_summary_get
      parameters:
        - name: network
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Network
        - name: wallet_address
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Wallet Address
        - name: start_time
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            title: Start Time
        - name: end_time
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            title: End Time
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````