Python - Get Package Version

Get information about a package version.

GET https://pkgs.dev.azure.com/{organization}/_apis/packaging/feeds/{feedId}/pypi/packages/{packageName}/versions/{packageVersion}?api-version=5.0-preview.1
GET https://pkgs.dev.azure.com/{organization}/_apis/packaging/feeds/{feedId}/pypi/packages/{packageName}/versions/{packageVersion}?showDeleted={showDeleted}&api-version=5.0-preview.1

URI Parameters

Name In Required Type Description
feedId
path True

string

Name or ID of the feed.

organization
path True

string

The name of the Azure DevOps organization.

packageName
path True

string

Name of the package.

packageVersion
path True

string

Version of the package.

api-version
query True

string

Version of the API to use. This should be set to '5.0-preview.1' to use this version of the api.

showDeleted
query

boolean

True to show information for deleted package versions.

Responses

Name Type Description
200 OK

Package

successful operation

Security

oauth2

Type: oauth2
Flow: accessCode
Authorization URL: https://app.vssps.visualstudio.com/oauth2/authorize&response_type=Assertion
Token URL: https://app.vssps.visualstudio.com/oauth2/token?client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer&grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer

Scopes

Name Description
vso.packaging Grants the ability to read feeds and packages.

Definitions

Name Description
Package

Package version metadata for a Python package

ReferenceLinks

The class to represent a collection of REST reference links.

Package

Package version metadata for a Python package

Name Type Description
_links

ReferenceLinks

Related REST links.

deletedDate

string

If and when the package was deleted.

id

string

Package Id.

name

string

The display name of the package.

permanentlyDeletedDate

string

If and when the package was permanently deleted.

version

string

The version of the package.

The class to represent a collection of REST reference links.

Name Type Description
links

object

The readonly view of the links. Because Reference links are readonly, we only want to expose them as read only.