-2

I want to make simple curl call to check if youtube channel exists. Is it possible without using google API ?

FrancMo
  • 2,459
  • 2
  • 19
  • 39

1 Answers1

-1

Yep, just using cURL, if you try to access a non-existent YouTube Channel, say https://www.youtube.com/channel/hello, it responds with a status code of 404. You can use that to find if the channel exists or not.

The above is the logic and to find it using cURL, you may check:

Praveen Kumar Purushothaman
  • 164,888
  • 24
  • 203
  • 252