このバージョンの GitHub Enterprise はこの日付をもって終了となりました: 2022-06-03. 重大なセキュリティの問題に対してであっても、パッチリリースは作成されません。 パフォーマンスの向上、セキュリティの改善、新機能のためには、最新バージョンのGitHub Enterpriseにアップグレードしてく� さい。 アップグレードに関する支援については、GitHub Enterprise supportに連絡してく� さい。
レート制限
Rate limit APIを使うと、様々なREST APIの現在のレート制限のステータスをチェックできます。
Rate limit APIについて
REST API 概要ドキュメンテーションでは、レート制限のルールについて説明しています。 以下で説明する Rate Limit API を使用して、現在のレート制限ステータスをいつでも確認できます。
レート制限のステータスを理解する
Search APIはカスタ� のレート制限を持ち、他のREST APIを管理するレート制限とは分離されています。 GraphQL APIもカスタ� のレート制限を持ち、REST APIのレート制限とは分離されて別に計算されます。
そのため、Rate Limit APIのレスポンスは、レート制限を分類します。 resources
の下には、4 つのオブジェクトがあります。
-
core
オブジェクトは、REST API中の検索に関連しないすべてのリソースに関するレート制限のステータスを提供します。 -
search
オブジェクトは、Search APIに対するレート制限のステータスを提供します。 -
graphql
オブジェクトは、GraphQL APIに対するレート制限のステータスを提供します。 -
integration_manifest
オブジェクトは、GitHub App Manifest コード変換エンドポイントに対するレート制限のステータスを提供します。
レート制限レスポンス中のヘッダと値に関する詳しい情� �については「REST API中のリソース」を参照してく� さい。
Get rate limit status for the authenticated user
Note: Accessing this endpoint does not count against your REST API rate limit.
Note: The rate
object is deprecated. If you're writing new API client code or updating existing code, you should use the core
object instead of the rate
object. The core
object contains the same information that is present in the rate
object.
HTTP response status codes
Status code | 説明 |
---|---|
200 | OK |
304 | Not modified |
404 | Resource not found |
コードサンプル
curl \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token <TOKEN>" \
http(s)://HOSTNAME/api/v3/rate_limit
Response
Status: 200
{
"resources": {
"core": {
"limit": 5000,
"remaining": 4999,
"reset": 1372700873,
"used": 1
},
"search": {
"limit": 30,
"remaining": 18,
"reset": 1372697452,
"used": 12
},
"graphql": {
"limit": 5000,
"remaining": 4993,
"reset": 1372700389,
"used": 7
},
"integration_manifest": {
"limit": 5000,
"remaining": 4999,
"reset": 1551806725,
"used": 1
},
"code_scanning_upload": {
"limit": 500,
"remaining": 499,
"reset": 1551806725,
"used": 1
}
},
"rate": {
"limit": 5000,
"remaining": 4999,
"reset": 1372700873,
"used": 1
}
}