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

# Check Remaining Credits

> Retrieve the remaining credits available for file processing.



## OpenAPI

````yaml api-reference/openapi.json get /balance
openapi: 3.0.3
info:
  title: Bank Statement Converter API
  description: API for converting bank statement PDFs to other formats.
  version: 1.0.0
servers:
  - url: https://api.bankstmtconverter.com
    description: Production server
security: []
paths:
  /balance:
    get:
      summary: Check Remaining Credits
      description: Retrieve the remaining credits available for file processing.
      operationId: checkRemainingCredits
      responses:
        '200':
          description: Request successful.
          content:
            application/json:
              schema:
                type: object
                properties:
                  remaining_credits:
                    type: integer
                    description: Credits remaining after your file processing.
        '401':
          description: Unauthorized - Invalid API key.
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Enter your API Bearer token

````