---
title: "Get Provider Specific Params"
method: GET
path: "/guardrails/ui/provider_specific_params"
tags: ["Guardrails"]
---

# Get Provider Specific Params

`GET /guardrails/ui/provider_specific_params`

Get provider-specific parameters for different guardrail types.

Returns a dictionary mapping guardrail providers to their specific parameters,
including parameter names, descriptions, and whether they are required.

Example Response:
```json
{
    "bedrock": {
        "guardrailIdentifier": {
            "description": "The ID of your guardrail on Bedrock",
            "required": true,
            "type": null
        },
        "guardrailVersion": {
            "description": "The version of your Bedrock guardrail (e.g., DRAFT or version number)",
            "required": true,
            "type": null
        }
    },
    "azure_content_safety_text_moderation": {
        "api_key": {
            "description": "API key for the Azure Content Safety Text Moderation guardrail",
            "required": false,
            "type": null
        },
        "optional_params": {
            "description": "Optional parameters for the Azure Content Safety Text Moderation guardrail",
            "required": true,
            "type": "nested",
            "fields": {
                "severity_threshold": {
                    "description": "Severity threshold for the Azure Content Safety Text Moderation guardrail across all categories",
                    "required": false,
                    "type": null
                },
                "categories": {
                    "description": "Categories to scan for the Azure Content Safety Text Moderation guardrail",
                    "required": false,
                    "type": "multiselect",
                    "options": ["Hate", "SelfHarm", "Sexual", "Violence"],
                    "default_value": None
                }
            }
        }
    }
}
```

## Response `200`

Successful Response

- unknown

## Changes

- **2026-08-30** `24ad9eaf6a00` — 2 info
  - api tag `Guardrails` added
  - api tag `guardrails` removed
- **2026-08-27** `4a06c3148b6c` — 2 info
  - api tag `guardrails` added
  - api tag `Guardrails` removed
- **2026-08-13** `9dbf4ea7ee00` — 2 info
  - api tag `Guardrails` added
  - api tag `guardrails` removed

[Change history](https://skmtc.dev/flock/apis/litellm-api/changes/guardrails/ui/provider_specific_params/get.md)

---

[API](https://skmtc.dev/flock/apis/litellm-api.md) · [All operations](https://skmtc.dev/flock/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/flock/litellm-api/revisions/24ad9eaf6a00/schema)
