---
title: "Get Resolved Guardrails"
method: GET
path: "/policies/{policy_id}/resolved-guardrails"
tags: ["Policies"]
---

# Get Resolved Guardrails

`GET /policies/{policy_id}/resolved-guardrails`

Get the resolved guardrails for a policy (including inherited guardrails).

This endpoint resolves the full inheritance chain and returns the final
set of guardrails that would be applied for this policy.

Example Request:
```bash
curl -X GET "http://localhost:4000/policies/123e4567-e89b-12d3-a456-426614174000/resolved-guardrails" \
    -H "Authorization: Bearer <your_api_key>"
```

Example Response:
```json
{
    "policy_id": "123e4567-e89b-12d3-a456-426614174000",
    "policy_name": "healthcare-compliance",
    "resolved_guardrails": ["pii_masking", "prompt_injection", "toxicity_filter"]
}
```

## Path parameters

- `policy_id` string, required

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/sea-lion/apis/litellm-api.md) · [All operations](https://skmtc.net/sea-lion/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sea-lion/litellm-api/revisions/79928a3d37d3/schema)
