What is the rate limit on github commits api

I need to know the rate limit of using the api from:

https://developer.github.com/v3/repos/commits/

for one of my university projects. However, it doesn't seem to be explicitly mentioned on their website.

Or is it part of the search API? or events?

Upvotes: 0

Views: 573

Answers (1)

Anish Shah
Anish Shah

Reputation: 8159

For unauthenticated requests, the rate limit allows for up to 60 requests per hour and for API requests using Basic Authentication or OAuth, you can make up to 5000 requests per hour.

https://developer.github.com/v3/#rate-limiting

Upvotes: 3

Related Questions