Skip to content

Instantly share code, notes, and snippets.

@VadimDos
Forked from usametov/topics-search.txt
Created April 22, 2022 18:25
Show Gist options
  • Select an option

  • Save VadimDos/06d7ca7c11e654efbc2f5db01cc42dfe to your computer and use it in GitHub Desktop.

Select an option

Save VadimDos/06d7ca7c11e654efbc2f5db01cc42dfe to your computer and use it in GitHub Desktop.
how to search github.com for multiple topics
Github.com ui .currently does not natively supoport search for multiple topic tags as of now. However their api allows you to query multiple tags. Below is a simple example to query github.com with ecs and go topic tags.
curl -H "Accept: application/vnd.github.mercy-preview+json" \
https://api.github.com/search/repositories?q=topic:ecs+topic:go
Response from the github can be rather verbose so lets filter only relavant info such repo url and description.
curl -H "Accept: application/vnd.github.mercy-preview+json" \
https://api.github.com/search/repositories\?q\=topic:ecs+topic:go | jq '.items[] | {url:.url, description:.description}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment