H.NW
H.NW

Reputation: 21

how to list all android projects Github using Github API?

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

Answers (1)

Gorgon_Union
Gorgon_Union

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

Related Questions