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

# Get producer balance

> Return balance information for the authenticated producer

Returns balance information for the authenticated producer.

<Info>
  This endpoint requires the `x-public-key` and `x-secret-key` headers.
</Info>

## Request example

<RequestExample>
  ```bash theme={null}
  curl --request GET \
    --url https://app.amplopay.com/api/v1/gateway/producer/balance \
    --header 'x-public-key: SUA_CHAVE_PUBLICA_AQUI' \
    --header 'x-secret-key: SUA_CHAVE_PRIVADA_AQUI'
  ```
</RequestExample>

## Response

<ResponseField name="available" type="number" required>
  Balance available for withdrawal.
</ResponseField>

<ResponseField name="pending" type="number" required>
  Pending balance.
</ResponseField>

<ResponseField name="fundLock" type="number" required>
  Locked balance.
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "available": 12345.67,
    "pending": 999.99,
    "fundLock": 0
  }
  ```
</ResponseExample>
