# Channel Info

Returns details about the YouTube channel.

Endpoint: GET /raw/youtube/channel-info
Security: accessToken

## Query parameters:

  - `url` (string, required)
    YouTube url to channel's page, i.e. https://www.youtube.com/@{channelName}
    Example: "https://www.youtube.com/@MrBeast"

## Response 200 fields (application/json):

  - `channel_info` (object, required)

  - `channel_info.channel_id` (string, required)

  - `channel_info.custom_url` (string)

  - `channel_info.username` (string)

  - `channel_info.is_removed` (boolean, required)

  - `channel_info.is_hidden` (boolean, required)

  - `channel_info.is_verified` (boolean, required)

  - `channel_info.fullname` (string)

  - `channel_info.picture` (string)

  - `channel_info.description` (string)

  - `channel_info.country` (string)

  - `channel_info.followers` (number)

  - `channel_info.joined_at` (string)

  - `channel_info.has_join` (boolean)

  - `channel_info.total_views` (number)

  - `channel_info.links` (array)

  - `channel_info.handle` (string)

  - `success` (boolean, required)


