---
title: "Get subreddit rules"
method: GET
path: "/v1/accounts/{accountId}/reddit-subreddits/{subreddit}/rules"
tags: ["Connect"]
---

# Get subreddit rules

`GET /v1/accounts/{accountId}/reddit-subreddits/{subreddit}/rules`

Returns a subreddit's posting rules plus Reddit's site-wide rules, so you can check
them before submitting and avoid a removal.

Use this alongside `POST /v1/tools/validate/subreddit`, which only confirms that a
subreddit exists and reports its basic posting settings.

## Path parameters

- `accountId` string, required
- `subreddit` string, required

## Response `200`

Subreddit and site rules

- object
  - `rules` object[]
    - `kind` string — Scope of the rule: 'link', 'comment', or 'all'
    - `shortName` string — Short rule title shown in the subreddit sidebar
    - `description` string — Full rule text
    - `violationReason` string — Reason shown to a user when the rule is enforced
    - `createdUtc` number — Unix timestamp when the rule was created
    - `priority` integer — Display order of the rule
  - `siteRules` string[] — Reddit's site-wide content policy rules

## Other responses

- `400` — Not a Reddit account
- `401` — Unauthorized
- `404` — Account or subreddit not found
- `502` — Reddit was unreachable or returned an unclassified error. Reddit 4xx statuses are forwarded as-is.

---

[API](https://skmtc.net/zernio/apis/zernio-api.md) · [All operations](https://skmtc.net/zernio/apis/zernio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zernio/zernio-api/versions/f81ca70ea6b9/schema)
