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

# Get Proxy Servers

Returns the proxy server configuration for the specified charger.

<ParamField path="charger" type="string" required>
  The UUID of the charger.
</ParamField>

## Response

<ResponseField name="data" type="object[]">
  A list of proxy server entries.

  <Expandable title="proxy server">
    <ResponseField name="websocket_url" type="string">
      The WebSocket URL of the proxy server.
    </ResponseField>

    <ResponseField name="role" type="string">
      The role of this server. Either `ROLE_LEADER` or `ROLE_FOLLOWER`.
    </ResponseField>

    <ResponseField name="has_password" type="boolean">
      Whether a password is currently stored for this server. The password value itself is never returned.
    </ResponseField>

    <ResponseField name="created_at" type="string">
      ISO 8601 timestamp of when the proxy entry was created.
    </ResponseField>

    <ResponseField name="updated_at" type="string">
      ISO 8601 timestamp of when the proxy entry was last updated.
    </ResponseField>
  </Expandable>
</ResponseField>
