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

# /kick/channels

> Get Kick channel details by slug or URL

**Price:** 1 credit

**⚠️ Common errors:** 412: Channel not found



## OpenAPI

````yaml /openapi/social-media.json post /api/kick/channels
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/kick/channels:
    post:
      tags:
        - /kick
      summary: /kick/channels
      description: |-
        Get Kick channel details by slug or URL

        **Price:** 1 credit

        **⚠️ Common errors:** 412: Channel not found
      operationId: __api_kick_channels_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KickChannelPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KickChannel'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    KickChannelPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        slug:
          type: string
          minLength: 1
      type: object
      required:
        - slug
    KickChannel:
      properties:
        '@type':
          type: string
          default: KickChannel
        id:
          type: integer
        user_id:
          type: integer
        alias:
          type: string
        username:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        bio:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        banner:
          anyOf:
            - type: string
            - type: 'null'
        offline_banner:
          anyOf:
            - type: string
            - type: 'null'
        follower_count:
          type: integer
          default: 0
        is_banned:
          type: boolean
          default: false
        is_verified:
          type: boolean
          default: false
        is_affiliate:
          type: boolean
          default: false
        subscription_enabled:
          type: boolean
          default: false
        vod_enabled:
          type: boolean
          default: false
        can_host:
          type: boolean
          default: false
        is_muted:
          type: boolean
          default: false
        playback_url:
          anyOf:
            - type: string
            - type: 'null'
        socials:
          anyOf:
            - $ref: '#/components/schemas/KickSocials'
            - type: 'null'
        recent_categories:
          items:
            $ref: '#/components/schemas/KickCategory'
          type: array
          default: []
        chatroom:
          anyOf:
            - $ref: '#/components/schemas/KickChatroom'
            - type: 'null'
        livestream:
          anyOf:
            - $ref: '#/components/schemas/KickLivestream'
            - type: 'null'
      type: object
      required:
        - id
        - user_id
        - alias
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    KickSocials:
      properties:
        '@type':
          type: string
          default: KickSocials
        instagram:
          anyOf:
            - type: string
            - type: 'null'
        twitter:
          anyOf:
            - type: string
            - type: 'null'
        youtube:
          anyOf:
            - type: string
            - type: 'null'
        discord:
          anyOf:
            - type: string
            - type: 'null'
        tiktok:
          anyOf:
            - type: string
            - type: 'null'
        facebook:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    KickCategory:
      properties:
        '@type':
          type: string
          default: KickCategory
        id:
          type: integer
        alias:
          type: string
        name:
          type: string
        url:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        is_mature:
          type: boolean
          default: false
        is_promoted:
          type: boolean
          default: false
        viewer_count:
          type: integer
          default: 0
        follower_count:
          type: integer
          default: 0
        tags:
          items:
            type: string
          type: array
          default: []
        parent:
          anyOf:
            - $ref: '#/components/schemas/KickParentCategory'
            - type: 'null'
      type: object
      required:
        - id
        - alias
        - name
        - url
    KickChatroom:
      properties:
        '@type':
          type: string
          default: KickChatroom
        id:
          type: integer
        chat_mode:
          anyOf:
            - type: string
            - type: 'null'
        slow_mode:
          type: boolean
          default: false
        followers_mode:
          type: boolean
          default: false
        subscribers_mode:
          type: boolean
          default: false
        emotes_mode:
          type: boolean
          default: false
        message_interval:
          type: integer
          default: 0
        following_min_duration:
          type: integer
          default: 0
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    KickLivestream:
      properties:
        '@type':
          type: string
          default: KickLivestream
        id:
          type: integer
        alias:
          anyOf:
            - type: string
            - type: 'null'
        session_title:
          anyOf:
            - type: string
            - type: 'null'
        is_live:
          type: boolean
          default: false
        is_mature:
          type: boolean
          default: false
        language:
          anyOf:
            - type: string
            - type: 'null'
        viewer_count:
          type: integer
          default: 0
        duration_seconds:
          type: integer
          default: 0
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        started_at:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        source:
          anyOf:
            - type: string
            - type: 'null'
        tags:
          items:
            type: string
          type: array
          default: []
        category:
          anyOf:
            - $ref: '#/components/schemas/KickCategory'
            - type: 'null'
      type: object
      required:
        - id
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
    KickParentCategory:
      properties:
        '@type':
          type: string
          default: KickParentCategory
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          type: string
        icon:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - alias
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````