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

# Gets total count of beacon deposits

> Retrieves the total count of beacon deposits.



## OpenAPI

````yaml /openapi-specs/pro-api-v11.yaml get /v2/beacon/deposits/count
openapi: 3.0.0
info:
  contact:
    email: info@blockscout.com
  title: Blockscout
  version: 11.0.3
servers:
  - url: http://localhost/api
    variables: {}
security: []
tags:
  - name: blocks
  - name: transactions
  - name: addresses
  - name: internal-transactions
  - name: tokens
  - name: token-transfers
  - name: smart-contracts
  - name: config
  - name: main-page
  - name: search
  - name: stats
  - name: csv-export
  - name: account-abstraction
  - name: withdrawals
  - name: advanced-filters
  - name: arbitrum
  - name: legacy
  - name: optimism
  - name: mud
  - name: celo
  - name: scroll
  - name: zilliqa
paths:
  /v2/beacon/deposits/count:
    get:
      tags:
        - beacon_deposits
      summary: Gets total count of beacon deposits
      description: Retrieves the total count of beacon deposits.
      operationId: BlockScoutWeb.API.V2.Ethereum.DepositController.count
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: false
                properties:
                  deposits_count:
                    nullable: false
                    type: integer
                    x-struct: null
                    x-validate: null
                required:
                  - deposits_count
                type: object
                x-struct: null
                x-validate: null
          description: Total count of beacon deposits.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenResponse'
          description: Forbidden
      callbacks: {}
components:
  schemas:
    ForbiddenResponse:
      description: Response returned when the user is forbidden to access the resource
      properties:
        message:
          description: >-
            Error message indicating the user is forbidden to access the
            resource
          example: Unverified email
          type: string
          x-struct: null
          x-validate: null
      title: ForbiddenResponse
      type: object
      x-struct: Elixir.BlockScoutWeb.Schemas.API.V2.ErrorResponses.ForbiddenResponse
      x-validate: null

````