API endpoint for Packages

A package represent a collection of artifacts (i.e. versions) that share the same kind and name.

Package object attributes

id string
Unique identifier of the object

name string
Name of package

kind_key string
Package type ID

private boolean
Has the value true if package is private, false if public

version_count integer
The number of versions for this package

release_version nullable object
Limited version object for latest releasable version of this package. null if the package has no release-level versions. The object is limited to id, version, and prerelease keys.

latest_version object
Limited version object for the latest version (release or prerelease), including only the id, version, and prerelease keys.

List packages

Retrieve a list of packages for the account.

GET https://api.fury.io/1/packages

Retrieve package

Retrieve a single package from an account.

GET https://api.fury.io/1/packages/pkg_eb3c12
GET https://api.fury.io/1/packages/js:express
Path parameters

id string
Unique identifier or “KIND:NAME” of the package.

Deleting package

Delete all versions of a package to remove the package.


Next