I want to get some information about github repositories using only their name. To do so, I build my url as https://api.github.com/repos/:owner/<TheName>
But of course it doesn't work because I need the :owner field. I found many ways to get different information on the github api documentation page but none to get the owner. Is there any way to easily get it?
e.g. for input "spring-boot" repo , api should return full_name i.e. spring-projects/spring-boot (as git url for spring-boot is https://github.com/spring-projects/spring-boot).
Thanks for your help.