Skip to content

Get platforms for GitHub-hosted runners in an organization

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

Get the list of platforms available for GitHub-hosted runners for an organization.

API method documentation

org
required
string

The organization name. The name is not case sensitive.

Response

Media type application/json
object
total_count
required
integer
platforms
required
Array<string>
Examples
Example default
{
"total_count": 1,
"platforms": [
"linux-x64",
"win-x64"
]
}