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

# Retrieve Usage Statistics

> Retrieve usage statistics for Geonode proxy service.




## OpenAPI

````yaml api-reference/ref/usage-statistics.yaml get /monitor-light/proxies
openapi: 3.0.3
info:
  title: Geonode Proxy Usage Statistics API
  description: API for retrieving usage statistics in Geonode's proxy service.
  version: 1.0.0
servers:
  - url: https://monitor.geonode.com
    description: Geonode Monitoring Service
security: []
paths:
  /monitor-light/proxies:
    get:
      summary: Retrieve Usage Statistics
      description: |
        Retrieve usage statistics for Geonode proxy service.
      responses:
        '200':
          description: |
            Usage statistics retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      bandwidth:
                        type: object
                        properties:
                          data:
                            type: object
                            properties:
                              default:
                                type: integer
                                description: Total bandwidth used in bytes.
                                example: 17930356
                              currentFastBandwidth:
                                type: integer
                                description: >-
                                  Current fast bandwidth usage (applicable only
                                  to unlimited services).
                                example: 0
                              totalBandwidthInGB:
                                type: integer
                                description: Total bandwidth used in gigabytes.
                                example: 2
        '400':
          description: Bad request due to invalid parameters.
        '407':
          description: Unauthorized access due to invalid credentials.
        '500':
          description: Internal server error.
      security:
        - basicAuth: []
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic

````