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

# ListGuardrailsResponse - TypeScript SDK

> ListGuardrailsResponse type definition

<Warning>
  The TypeScript SDK and docs are currently in beta.
  Report issues on [GitHub](https://github.com/OpenRouterTeam/typescript-sdk/issues).
</Warning>

## Example Usage

```typescript lines theme={null}
import { ListGuardrailsResponse } from "@openrouter/sdk/models/operations";

let value: ListGuardrailsResponse = {
  result: {
    data: [
      {
        createdAt: "2025-08-24T10:30:00Z",
        id: "550e8400-e29b-41d4-a716-446655440000",
        name: "Production Guardrail",
        workspaceId: "0df9e665-d932-5740-b2c7-b52af166bc11",
      },
    ],
    totalCount: 1,
  },
};
```

## Fields

| Field    | Type                                                                                               | Required             | Description | Example                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| -------- | -------------------------------------------------------------------------------------------------- | -------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `result` | [models.ListGuardrailsResponse](/agent-sdk/typescript/api-reference/models/listguardrailsresponse) | :heavy\_check\_mark: | N/A         | `{"data": [{"allowed_models": null,"allowed_providers": ["openai","anthropic","google"],"content_filter_builtins": [{"action": "redact","label": "[EMAIL]","slug": "email"}`<br />],<br />"content\_filters": null,<br />"created\_at": "2025-08-24T10:30:00Z",<br />"description": "Guardrail for production environment",<br />"enforce\_zdr": null,<br />"enforce\_zdr\_anthropic": true,<br />"enforce\_zdr\_google": false,<br />"enforce\_zdr\_openai": true,<br />"enforce\_zdr\_other": false,<br />"id": "550e8400-e29b-41d4-a716-446655440000",<br />"ignored\_models": null,<br />"ignored\_providers": null,<br />"limit\_usd": 100,<br />"name": "Production Guardrail",<br />"reset\_interval": "monthly",<br />"updated\_at": "2025-08-24T15:45:00Z",<br />"workspace\_id": "0df9e665-d932-5740-b2c7-b52af166bc11"<br />}<br />],<br />"total\_count": `1<br/>`} |
