{ "/apply_guardrail": { "post": { "summary": "Apply Guardrail", "description": "Apply a guardrail to text input and return the processed result.\n\nThis endpoint allows testing guardrails by applying them to custom text inputs.", "operationId": "apply_guardrail_apply_guardrail_post", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApplyGuardrailRequest" } } }, "required": true }, "responses": { "200": { "description": "Successful Response", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApplyGuardrailResponse" } } } }, "422": { "description": "Validation Error", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/HTTPValidationError" } } } } }, "security": [ { "APIKeyHeader": [] } ] } } }