Reputation: 21
I am looking for a URL form Github API to list all android project, for Example I can use this api to list all java project https://api.github.com/legacy/repos/search/language=java
Upvotes: 2
Views: 348
Reputation: 583
You can add topics as a parameter to your API call.
Try something like: https://api.github.com/search/topics?q=android&language=java
curl -H 'Accept: application/vnd.github.mercy-preview+json' \
'https://api.github.com/search/topics?q=android&language=java'
Upvotes: 1