Interface PaginationParams

Common pagination parameters accepted by GitHub REST API list endpoints.

GitHub uses page-based pagination. Pass page and per_page to control results.

interface PaginationParams {
    page?: number;
    per_page?: number;
}

Hierarchy (View Summary)

Properties

Properties

page?: number

Page number to retrieve (1-based). Use nextPage from the previous response to paginate forward.

per_page?: number

Maximum number of results per page. GitHub default is 30, maximum is 100.