Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 559 Bytes

File metadata and controls

17 lines (11 loc) · 559 Bytes

Query with CURL

Single Request

Fetching all reposotories of the GitHub Actions Organization.

curl --location --request GET 'https://api.github.com/orgs/actions/repos' \

Paginated Request

Some endpoints return a large number of items, such as repos. To keep responses fast, paginated requests return a subset of the items. You can request the next subset of items using the page query parameter.

curl --location --request GET 'https://api.github.com/orgs/actions/repos?page=1&per_page=10'