List package versions for a package owned by an organization
Lists package versions for a package owned by an organization.
OAuth app tokens and personal access tokens (classic) need the read:packages scope to use this endpoint. For more information, see "About permissions for GitHub Packages."
Path parameters
The type of supported package. Packages in GitHub's Gradle registry have the type maven. Docker images pushed to GitHub's Container registry (ghcr.io) have the type container. You can use the type docker to find images that were pushed to GitHub's Docker registry (docker.pkg.github.com), even if these have now been migrated to the Container registry.
The name of the package.
The organization name. The name is not case sensitive.
Query parameters
The page number of the results to fetch. For more information, see "Using pagination in the REST API."
The number of results per page (max 100). For more information, see "Using pagination in the REST API."
The state of the package, either active or deleted.
Response
Response
Example response
[
{
"id": 1,
"name": "latest",
"url": "https://api.github.com/orgs/github/packages/container/super-linter/versions/786068",
"package_html_url": "https://github.com/orgs/github/packages/container/package/super-linter",
"html_url": "https://github.com/orgs/github/packages/container/super-linter/786068",
"license": "MIT",
"created_at": "2011-04-10T20:09:31Z",
"updated_at": "2014-03-03T18:58:10Z",
"deleted_at": "2014-03-03T18:58:10Z",
"metadata": {
"package_type": "docker"
}
}
]