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

# View content rule group

Retrieve a single content rule group from the current site.

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Content rule groups",
    "version": "1.0.0",
    "description": "Site-scoped **content rule groups** and the read-only **global content rule groups** catalog.\n\nReadMe maps `info.title` to the API **category** and each operation's **first** `tags` entry to a **page** under that category, then `summary` lines as endpoint subpages. After upload you should see this OpenAPI file powering the Content rule groups section.\n"
  },
  "servers": [
    {
      "url": "https://api.zype.com/"
    }
  ],
  "security": [
    {
      "api_key": []
    }
  ],
  "tags": [
    {
      "name": "Content rule groups",
      "description": "CRUD for custom groupings on the current site (e.g. country lists)."
    }
  ],
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "api_key",
        "in": "query"
      }
    }
  },
  "paths": {
    "/v3/content_rule_groups/{id}": {
      "get": {
        "tags": [
          "Content rule groups"
        ],
        "summary": "View content rule group",
        "description": "Retrieve a single content rule group from the current site.",
        "operationId": "getContentRuleGroup",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "ID of the content rule group."
          }
        ],
        "responses": {
          "200": {
            "description": "Return content rule group.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1v3~1content_rule_groups/post/responses/201/content/application~1json/schema"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1v3~1content_rule_groups/get/responses/403/content/application~1json/schema"
                }
              }
            }
          },
          "404": {
            "description": "Content rule group not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1v3~1content_rule_groups/get/responses/403/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    }
  }
}
```