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

# YouTube Video Info

> Retrieves detailed information about a specific YouTube video



## OpenAPI

````yaml post /youtube-video-info
openapi: 3.0.0
info:
  title: Growth Marketing API
  description: API for company information, logos, MOZ metrics, and SERP data
  version: 1.0.0
  contact:
    name: Growth Marketing AI
    url: https://growthmarketing.ai
servers:
  - url: https://api.growthmarketing.ai
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /youtube-video-info:
    post:
      summary: YouTube Video Info
      description: Retrieves detailed information about a specific YouTube video
      operationId: getYouTubeVideoInfo
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - video_id
              properties:
                video_id:
                  type: string
                  description: YouTube video ID
                  example: vQXvyV0zIP4
                language_code:
                  type: string
                  description: Language code
                  default: en
                  example: en
                location_code:
                  type: integer
                  description: Location code (2840 for US)
                  default: 2840
                  example: 2840
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      data:
                        type: object
                        properties:
                          api:
                            type: string
                            example: serp
                          function:
                            type: string
                            example: live
                          se:
                            type: string
                            example: youtube
                          se_type:
                            type: string
                            example: video_info
                          language_code:
                            type: string
                            example: en
                          location_code:
                            type: integer
                            example: 2840
                          video_id:
                            type: string
                            example: vQXvyV0zIP4
                          check_url:
                            type: string
                            example: https://www.youtube.com/watch?v=vQXvyV0zIP4
                      result:
                        $ref: '#/components/schemas/YouTubeVideoInfo'
components:
  schemas:
    YouTubeVideoInfo:
      type: object
      properties:
        type:
          type: string
          example: youtube_video_info
        video_id:
          type: string
          example: vQXvyV0zIP4
        title:
          type: string
          example: Video Title
        url:
          type: string
          example: https://www.youtube.com/watch?v=vQXvyV0zIP4
        thumbnail_url:
          type: string
          example: https://i.ytimg.com/vi/vQXvyV0zIP4/default.jpg
        channel_id:
          type: string
          example: UCl1hby9X42xkXUiAVcJS81A
        channel_name:
          type: string
          example: Channel Name
        channel_url:
          type: string
          example: https://www.youtube.com/channel/UCl1hby9X42xkXUiAVcJS81A
        channel_logo:
          type: string
          example: https://yt3.ggpht.com/example
        description:
          type: string
          example: Video description...
        views_count:
          type: integer
          example: 1234567
        likes_count:
          type: integer
          example: 12345
        comments_count:
          type: integer
          example: 1234
        channel_subscribers_count:
          type: object
          properties:
            displayed_count:
              type: string
              example: 100K subscribers
            count:
              type: integer
              example: 100000
        publication_date:
          type: string
          format: date
          example: '2024-01-01'
        timestamp:
          type: string
          example: '2024-01-01 12:00:00 +00:00'
        keywords:
          type: array
          items:
            type: string
          example:
            - keyword1
            - keyword2
        category:
          type: string
          example: Category Name
        is_live:
          type: boolean
          example: false
        is_embeddable:
          type: boolean
          example: true
        duration_time:
          type: string
          example: '10:30'
        duration_time_seconds:
          type: integer
          example: 630
        streaming_quality:
          type: array
          items:
            type: object
            properties:
              type:
                type: string
                example: streaming_quality_element
              label:
                type: string
                example: 1080p
              width:
                type: integer
                example: 1920
              height:
                type: integer
                example: 1080
              bitrate:
                type: integer
                example: 2500000
              mime_type:
                type: string
                example: video/mp4; codecs="avc1.640028"
              fps:
                type: integer
                example: 30
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````