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

# Check if Subreddit is Muted

> Check if Subreddit is Muted

Check if Subreddit is Muted

**Pricing** — base \$0.00145 per successful call (provider cost × 1.45; final charge scales by your plan multiplier). Charged only when the upstream response body `code` is `200`.

<Note>
  Response structure is not yet fully documented — **refer to the actual API response**.
</Note>

## Example

```bash theme={null}
curl "https://api.aisa.one/apis/v1/tikhub/reddit/app/check_subreddit_muted?subreddit_id=t5_2qh0u" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/tikhub-en.json GET /tikhub/reddit/app/check_subreddit_muted
openapi: 3.0.0
info:
  title: TikHub API
  description: >-
    Multi-platform social media data via TikHub — Douyin, TikTok, Bilibili,
    Kuaishou, Weibo, Xiaohongshu, Zhihu, and commercial
    (Xingtu/Huahuo/Billboard) endpoints.
  version: 1.0.0
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - bearerAuth: []
paths:
  /tikhub/reddit/app/check_subreddit_muted:
    get:
      tags:
        - TikHub - Reddit
      summary: Check if Subreddit is Muted
      description: Check if Subreddit is Muted
      operationId: get_tikhub_reddit_app_check_subreddit_muted
      parameters:
        - name: language
          in: query
          required: false
          schema:
            type: string
            minLength: 2
            maxLength: 16
            pattern: ^[A-Za-z]{2,3}(?:-[A-Za-z0-9]{2,8})*$
            description: >-
              Preferred response language as an IETF language tag; default:
              en-US
            default: en-US
            title: Language
          description: 'Preferred response language as an IETF language tag; default: en-US'
        - name: subreddit_id
          in: query
          required: true
          schema:
            type: string
            minLength: 4
            maxLength: 20
            pattern: ^t5_[a-z0-9]{1,17}$
            description: Subreddit ID
            title: Subreddit Id
          description: Subreddit ID
          example: t5_2qh0u
        - name: need_format
          in: query
          required: false
          schema:
            type: boolean
            description: Whether to clean and format the data
            default: false
            title: Need Format
          description: Whether to clean and format the data
          example: false
      responses:
        '200':
          description: >-
            Successful response. Response structure varies; refer to the actual
            API response.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````