Searching Channel with Youtube API

Madu

I am using Youtube Data Api V3 in my iOS App. Can some body give me some example for search thing the some Channel by name.

I am trying in the following way but its not working

https://www.googleapis.com/youtube/v3/search/list?key={YOUR_API_KEY}&part=snippet&type=channel&q=AnimalPlanetTV

Can anybody help me how i can get the channel data by name

Thanks

mpgn

This is a live example

You need to use Channel list of API V3

The result is like that with snippet

{
 "kind": "youtube#channelListResponse",
 "etag": "\"gMjDJfS6nsym0T-NKCXALC_u_rM/RKAMAh1QnoE3ilYYcvWIqvcDEZo\"",
 "pageInfo": {
  "totalResults": 1,
  "resultsPerPage": 5
 },
 "items": [
  {

   "kind": "youtube#channel",
   "etag": "\"gMjDJfS6nsym0T-NKCXALC_u_rM/MenmiFqQVVN5JQ9MJpC9gddZ4Lw\"",
   "id": "UCkEBDbzLyH-LbB2FgMoSMaQ",
   "snippet": {
    "title": "Animal Planet",
    "description": "Animal Planet is the world's only entertainment brand that immerses viewers in the full range of life in the animal kingdom with rich, deep content via multiple platforms and offers animal lovers and pet owners access to a centralized online, television and mobile community for immersive, engaging, high-quality entertainment, information and enrichment.",
    "publishedAt": "2007-02-14T18:26:59.000Z",
    "thumbnails": {
     "default": {
      "url": "https://yt3.ggpht.com/-FEsYkupUb-A/AAAAAAAAAAI/AAAAAAAAAAA/6SiqnVvRZJY/s88-c-k-no/photo.jpg"
     },
     "medium": {
      "url": "https://yt3.ggpht.com/-FEsYkupUb-A/AAAAAAAAAAI/AAAAAAAAAAA/6SiqnVvRZJY/s240-c-k-no/photo.jpg"
     },
     "high": {
      "url": "https://yt3.ggpht.com/-FEsYkupUb-A/AAAAAAAAAAI/AAAAAAAAAAA/6SiqnVvRZJY/s240-c-k-no/photo.jpg"
     }
    }
   }
  }
 ]
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Searching the youTube V3 API via channel name not username?

From Dev

Searching the youTube V3 API via channel name not username?

From Dev

Youtube API - no channel name

From Dev

Searching only for music tracks on YouTube with the YouTube API

From Dev

Using the youtube livestream API with a youtube partner channel

From Dev

java | Youtube API : Searching for channels related to a keyword

From Dev

Youtube-API Related Channels to a Channel

From Dev

Get videos from youtube api from channel

From Dev

Youtube API: Get the channel or username from the videoID

From Dev

YouTube v3 API upload to channel

From Dev

Getting all videos of a channel using youtube API

From Dev

CMS channel list using Youtube API with onBehalfOfContentOwner

From Dev

Get videos from youtube api from channel

From Dev

Send a message to a YouTube Channel via API

From Dev

How to fetch top 10 channel with youtube api

From Dev

How to get Youtube channel banner using Youtube API?

From Dev

Youtube API v3 Create Youtube Channel on Android with webView

From Dev

How to get the Channel Type or Category of each YouTube channel using YouTube API?

From Dev

YouTube API V3 - Channel Required, can I programmatically create a YouTube channel?

From Dev

How to get Youtube channel details using Youtube data API if channel has custom url

From Dev

How to get the Channel Type or Category of each YouTube channel using YouTube API?

From Dev

Youtube API beginner, searching for a list of different terms automatically

From Dev

Is it legal to use Youtube Data API to create youtube-like app that aggregrate youtube videos from any channel?

From Dev

YouTube API v3 - Direct upload to own channel

From Dev

YouTube API v3 detect if subscribed to a channel

From Dev

How to search content across multiple channel in youtube api?

From Dev

Youtube API v3 - Related videos from specific channel

From Dev

YouTube API v3 not retrieving videos for a channel

From Dev

Google Youtube API Search doesn't retrieve all videos in the channel

Related Related

  1. 1

    Searching the youTube V3 API via channel name not username?

  2. 2

    Searching the youTube V3 API via channel name not username?

  3. 3

    Youtube API - no channel name

  4. 4

    Searching only for music tracks on YouTube with the YouTube API

  5. 5

    Using the youtube livestream API with a youtube partner channel

  6. 6

    java | Youtube API : Searching for channels related to a keyword

  7. 7

    Youtube-API Related Channels to a Channel

  8. 8

    Get videos from youtube api from channel

  9. 9

    Youtube API: Get the channel or username from the videoID

  10. 10

    YouTube v3 API upload to channel

  11. 11

    Getting all videos of a channel using youtube API

  12. 12

    CMS channel list using Youtube API with onBehalfOfContentOwner

  13. 13

    Get videos from youtube api from channel

  14. 14

    Send a message to a YouTube Channel via API

  15. 15

    How to fetch top 10 channel with youtube api

  16. 16

    How to get Youtube channel banner using Youtube API?

  17. 17

    Youtube API v3 Create Youtube Channel on Android with webView

  18. 18

    How to get the Channel Type or Category of each YouTube channel using YouTube API?

  19. 19

    YouTube API V3 - Channel Required, can I programmatically create a YouTube channel?

  20. 20

    How to get Youtube channel details using Youtube data API if channel has custom url

  21. 21

    How to get the Channel Type or Category of each YouTube channel using YouTube API?

  22. 22

    Youtube API beginner, searching for a list of different terms automatically

  23. 23

    Is it legal to use Youtube Data API to create youtube-like app that aggregrate youtube videos from any channel?

  24. 24

    YouTube API v3 - Direct upload to own channel

  25. 25

    YouTube API v3 detect if subscribed to a channel

  26. 26

    How to search content across multiple channel in youtube api?

  27. 27

    Youtube API v3 - Related videos from specific channel

  28. 28

    YouTube API v3 not retrieving videos for a channel

  29. 29

    Google Youtube API Search doesn't retrieve all videos in the channel

HotTag

Archive