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

# Get channel posts

> Get list of posts from a YouTube channel (community tab)



## OpenAPI

````yaml api-reference/youtube-openapi.json get /api/v1/chanel/posts
openapi: 3.1.0
info:
  title: YouTube APIs
  description: YouTube API Documentation
  version: 1.0.0
servers:
  - url: https://youtube-scraper-api-v21.p.rapidapi.com
security: []
paths:
  /api/v1/chanel/posts:
    get:
      tags:
        - Channel
      summary: Get channel posts
      description: Get list of posts from a YouTube channel (community tab)
      operationId: getApiV1ChanelPosts
      parameters:
        - in: query
          name: channelId
          schema:
            type: string
            description: YouTube channel ID
            example: UCzw-C7fNfs018R1FzIKnlaA
          required: true
        - in: query
          name: continuation
          schema:
            type: string
            description: Continuation token for pagination
            example: CDsQ8FsiEwje95_F1pmRAxXlsykDHUX
          required: false
        - in: query
          name: hl
          schema:
            type: string
            description: Language code
            example: en
            enum:
              - ar
              - az
              - bg
              - bn
              - cs
              - da
              - de
              - el
              - en
              - en-GB
              - en-IE
              - en-NZ
              - en-SG
              - es
              - es-419
              - fi
              - fil
              - fr
              - he
              - hi
              - hr
              - hu
              - id
              - it
              - ja
              - ko
              - lt
              - lv
              - ms
              - nl
              - 'no'
              - pl
              - pt-BR
              - pt-PT
              - ro
              - ru
              - sv
              - th
              - tr
              - uk
              - ur
              - vi
              - zh-Hant
            default: en
          required: false
        - in: query
          name: gl
          schema:
            type: string
            default: US
            description: Geographical code
            example: US
            enum:
              - US
              - AE
              - AR
              - AT
              - AU
              - AZ
              - BD
              - BE
              - BG
              - BR
              - CA
              - CH
              - CL
              - CO
              - CZ
              - DE
              - DK
              - DO
              - DZ
              - EC
              - EG
              - ES
              - FI
              - FR
              - GB
              - GH
              - GR
              - GT
              - HK
              - HN
              - HR
              - HU
              - ID
              - IE
              - IL
              - IN
              - IQ
              - IT
              - JP
              - KE
              - KR
              - LB
              - LT
              - LV
              - MA
              - MX
              - MY
              - NG
              - NL
              - 'NO'
              - NZ
              - PE
              - PH
              - PK
              - PL
              - PT
              - RO
              - RU
              - SA
              - SE
              - SG
              - TH
              - TR
              - TW
              - UA
              - VE
              - VN
              - ZA
          required: false
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Success
                  statusCode:
                    type: number
                    example: 200
                  pagination:
                    type: object
                    properties:
                      total:
                        type: number
                        example: 100
                      hasMore:
                        type: boolean
                        example: true
                      continuation:
                        type:
                          - string
                          - 'null'
                        description: Continuation token for pagination
                        example: CDsQ8FsiEwje95_F1pmRAxXlsykDHUX
                  data:
                    type: object
                    properties:
                      posts:
                        type: array
                        items:
                          type: object
                          properties:
                            postId:
                              type: string
                              description: YouTube post ID
                              example: UgkxfnZd7t1zzJoaAApJJpeEDRF3tFcTT_iK
                            authorText:
                              type: string
                              description: Post author name
                              example: BIGBANG
                            authorThumbnail:
                              type: array
                              items:
                                type: object
                                properties:
                                  url:
                                    type: string
                                    description: Author thumbnail image URL
                                    example: >-
                                      //yt3.googleusercontent.com/ytc/AIdro_n0J82ENLVh_wfaD7eOSjwfqloqGswqBxH4H-gg8PscRKw=s32-c-k-c0x00ffffff-no-rj-mo
                                  width:
                                    type: number
                                    description: Thumbnail image width in pixels
                                    example: 32
                                  height:
                                    type: number
                                    description: Thumbnail image height in pixels
                                    example: 32
                                required:
                                  - url
                                  - width
                                  - height
                                description: Author thumbnail image information
                              description: >-
                                Array of author thumbnail images in different
                                sizes
                            authorChannelId:
                              type: string
                              description: Channel ID of the post author
                              example: UCzw-C7fNfs018R1FzIKnlaA
                            contentText:
                              type: string
                              description: Post content text (may include hashtags)
                              example: |-
                                G-DRAGON - GUERRILLA DESK : G_Division

                                #GDRAGON #지드래곤 #GUERRILLADESK #G_Division #YG
                            publishedTimeText:
                              type: string
                              description: Post published time text
                              example: 2 years ago
                            voteCount:
                              type: string
                              description: Post like/vote count text
                              example: 17 N
                            commentCount:
                              type: string
                              description: Post comment count text
                              example: 1.2K
                            attachment:
                              type: object
                              properties:
                                videoId:
                                  type: string
                                  description: YouTube video ID attached to the post
                                  example: 4meIvHTBYJc
                                title:
                                  type: string
                                  description: Video title
                                  example: 'G-DRAGON - GUERRILLA DESK : G_Division'
                                thumbnails:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      url:
                                        type: string
                                        description: Thumbnail image URL
                                        example: >-
                                          https://i.ytimg.com/vi/4meIvHTBYJc/hq720.jpg
                                      width:
                                        type: number
                                        description: Thumbnail image width in pixels
                                        example: 360
                                      height:
                                        type: number
                                        description: Thumbnail image height in pixels
                                        example: 202
                                    required:
                                      - url
                                      - width
                                      - height
                                    description: Thumbnail image information
                                  description: >-
                                    Array of video thumbnail images in different
                                    sizes
                                viewCount:
                                  type: number
                                  description: Video view count as number
                                  example: 2527869
                                publishedTimeText:
                                  type: string
                                  description: Video published time text
                                  example: 2 years ago
                              required:
                                - videoId
                                - title
                              description: >-
                                Video attachment information if the post
                                contains a video
                          required:
                            - postId
                            - authorText
                            - contentText
                        description: Array of channel posts
                    required:
                      - posts
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bad request
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Invalid API key
        '403':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: >-
                      You are not subscribed to this API, please subscribe
                      before using
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Internal Server Error
                  status_code:
                    type: number
                    example: 500
                  cost:
                    type: number
                    example: 0
                  explain:
                    type: string
                    example: Internal Server Error
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-rapidapi-key
      description: API Key

````