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

# Get Points Balance

> This endpoint returns the specified points experience balance for the given user

<Note>
  Please review proper request headers [here](/consumer/usage/headers).
</Note>

### Response

<ResponseField name="balance" type="decimal">
  The user's current balance of the currency of the points experience
</ResponseField>

<RequestExample>
  ```bash Get Points Balance theme={null}
  curl https://api.thanxsandbox.com/points_experiences/:id/balance \
    -X GET \
    -H "Content-Type: application/json"  \
    -H "Accept-Version: v4.0" \
    -H "Accept: application/json" \
    -H "Authorization: Bearer ${token}" \
    -H "X-ClientId: ${client_id}" 
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "balance": 10.0
  }
  ```
</ResponseExample>
