Skip to content

Get limits on GitHub-hosted runners for an organization

GET
/orgs/{org}/actions/hosted-runners/limits

Get the GitHub-hosted runners limits for an organization.

API method documentation

org
required
string

The organization name. The name is not case sensitive.

Response

Media type application/json
object
public_ips
required
Static public IP Limits for GitHub-hosted Hosted Runners.

Provides details of static public IP limits for GitHub-hosted Hosted Runners

object
maximum
required

The maximum number of static public IP addresses that can be used for Hosted Runners.

integer
current_usage
required

The current number of static public IP addresses in use by Hosted Runners.

integer
Examples
Example default
{
"public_ips": {
"current_usage": 17,
"maximum": 50
}
}