Skip to Content
API ReferenceGuardrailsList Guardrails

List guardrails

GET

https://novapai.ai/api/v1/guardrails 

GET

/api/v1/guardrails

cURL
$curl https://novapai.ai/api/v1/guardrails \ >-H "Authorization: Bearer <token>"
200 Retrieved
reference-guardrails-list-guardrails-01.json
{ "data": [ { "id": "550e8400-e29b-41d4-a716-446655440000", "name": "Production Guardrail", "created_at": "2025-08-24T10:30:00Z", "description": "Guardrail for production environment", "limit_usd": 100, "reset_interval": "monthly", "allowed_providers": ["openai", "anthropic", "google"], "enforce_zdr": false, "updated_at": "2025-08-24T15:45:00Z" } ], "total_count": 1 }

List all guardrails for the authenticated user. Management key  required.

Authentication

Authorization Bearer

API key as bearer token in Authorization header

Query parameters

字段类型必填说明
offsetstringNumber of records to skip for pagination
limitstring-
Maximumnumber of records to return (max 100)--

Response

List of guardrails

字段类型必填说明
datalist of objects-List of guardrails
total_countdouble--
Totalnumber of guardrails--

Errors

状态码说明
401Unauthorized Error
500Internal Server Error