Skip to content

Instantly share code, notes, and snippets.

@fetsorn
Last active May 4, 2023 12:46
Show Gist options
  • Save fetsorn/3a356b982764410a5ee2a72c557143d0 to your computer and use it in GitHub Desktop.
Save fetsorn/3a356b982764410a5ee2a72c557143d0 to your computer and use it in GitHub Desktop.
Search fresh repos in two languages
curl --request GET \
--url "https://api.github.com/search/repositories?q=language:solidity,language:typescript+pushed:>2023-01-01+stars:>=20&per_page=100&page=1" \
--header "Accept: application/vnd.github+json" \
--header "Authorization: Bearer YOUR_TOKEN_HERE" | \
jq ".items[] | {owner: .owner.login, name, language}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment