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

# Retrieve a Policy

Retrieves a policy.

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.chargeapi.co/v1/policies/pol_63RXZHIfXAPPKYRkrWNfTCL9997xFuCP \
    -H "Authorization: Bearer ch_sk_test_..."
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
      "id": "pol_63RXZHIfXAPPKYRkrWNfTCL9997xFuCP",
      "object": "policy",
      "created": "2026-04-01T00:14:23.114Z",
      "description": null,
      "metadata": {},
      "mode": "enforcement",
      "name": "Example Policy",
      "rules": {
          "allowed_operators": ["example_operator"],
          "denied_operators": [],
          "geofences": [
              {
                  "center": {
                      "latitude": 48.8698,
                      "longitude": 2.3319
                  },
                  "name": "Example Zone",
                  "radius_meters": 1500
              }
          ],
          "max_price_per_kwh": 25,
          "time_windows": [
              {
                  "days_of_week": ["monday", "tuesday", "wednesday", "thursday", "friday"],
                  "end_time": "18:00",
                  "start_time": "09:00"
              }
          ]
      },
      "status": "active"
  }
  ```
</ResponseExample>

## Parameters

No parameters.

## Returns

Returns the policy.
