---
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

---

[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)
