Debian API

  • Tier: Free, Premium, Ultimate
  • Offering: GitLab Self-Managed
History

This is the API documentation for Debian.

This API is used by the Debian related package clients such as dput and apt-get, and is generally not meant for manual consumption. This API is under development and is not ready for production use due to limited functionality.

For instructions on how to upload and install Debian packages from the GitLab package registry, see the Debian registry documentation.

These endpoints do not adhere to the standard API authentication methods. See the Debian registry documentation for details on which headers and token types are supported. Undocumented authentication methods might be removed in the future.

Enable the Debian API

The Debian API is behind a feature flag that is disabled by default. GitLab administrators with access to the GitLab Rails console can opt to enable it. To enable it, follow the instructions in Enable the Debian API.

Enable the Debian group API

The Debian group API is behind a feature flag that is disabled by default. GitLab administrators with access to the GitLab Rails console can opt to enable it. To enable it, follow the instructions in Enable the Debian group API.

Authenticate to the Debian Package Repositories

See Authenticate to the Debian Package Repositories.

Upload a package file

History

Upload a Debian package file:

Copy to clipboard
PUT projects/:id/packages/debian/:file_name
AttributeTypeRequiredDescription
idstringyesThe ID or full path of the project.
file_namestringyesThe name of the Debian package file.
distributionstringnoThe distribution codename or suite. Used with component for upload with explicit distribution and component.
componentstringnoThe package file component. Used with distribution for upload with explicit distribution and component.
Copy to clipboard
curl --request PUT \
     --user "<username>:<personal_access_token>" \
     --upload-file path/to/mypkg.deb \
     "https://gitlab.example.com/api/v4/projects/1/packages/debian/mypkg.deb"

Upload with explicit distribution and component:

Copy to clipboard
curl --request PUT \
  --user "<username>:<personal_access_token>" \
  --upload-file  /path/to/myother.deb \
  "https://gitlab.example.com/api/v4/projects/1/packages/debian/myother.deb?distribution=sid&component=main"

Download a package

Download a package file.

Copy to clipboard
GET projects/:id/packages/debian/pool/:distribution/:letter/:package_name/:package_version/:file_name
AttributeTypeRequiredDescription
distributionstringyesThe codename or suite of the Debian distribution.
letterstringyesThe Debian Classification (first-letter or lib-first-letter).
package_namestringyesThe source package name.
package_versionstringyesThe source package version.
file_namestringyesThe filename.
Copy to clipboard
curl --header "Private-Token: <personal_access_token>" "https://gitlab.example.com/api/v4/projects/1/packages/debian/pool/my-distro/a/my-pkg/1.0.0/example_1.0.0~alpha2_amd64.deb"

Write the output to a file:

Copy to clipboard
curl --header "Private-Token: <personal_access_token>" \
     "https://gitlab.example.com/api/v4/projects/1/packages/debian/pool/my-distro/a/my-pkg/1.0.0/example_1.0.0~alpha2_amd64.deb" \
     --remote-name

This writes the downloaded file using the remote filename in the current directory.

Route prefix

The remaining endpoints described are two sets of identical routes that each make requests in different scopes:

  • Use the project-level prefix to make requests in a single project’s scope.
  • Use the group-level prefix to make requests in a single group’s scope.

The examples in this document all use the project-level prefix.

Project-level

Copy to clipboard
/projects/:id/packages/debian
AttributeTypeRequiredDescription
idstringyesThe project ID or full project path.

Group-level

Copy to clipboard
/groups/:id/-/packages/debian
AttributeTypeRequiredDescription
idstringyesThe project ID or full group path.

Download a distribution Release file

Download a Debian distribution file.

Copy to clipboard
GET <route-prefix>/dists/*distribution/Release
AttributeTypeRequiredDescription
distributionstringyesThe codename or suite of the Debian distribution.
Copy to clipboard
curl --header "Private-Token: <personal_access_token>" "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/Release"

Write the output to a file:

Copy to clipboard
curl --header "Private-Token: <personal_access_token>" \
     "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/Release" \
     --remote-name

This writes the downloaded file using the remote filename in the current directory.

Download a signed distribution Release file

Download a signed Debian distribution file.

Copy to clipboard
GET <route-prefix>/dists/*distribution/InRelease
AttributeTypeRequiredDescription
distributionstringyesThe codename or suite of the Debian distribution.
Copy to clipboard
curl --header "Private-Token: <personal_access_token>" "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/InRelease"

Write the output to a file:

Copy to clipboard
curl --header "Private-Token: <personal_access_token>" \
     "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/InRelease" \
     --remote-name

This writes the downloaded file using the remote filename in the current directory.

Download a release file signature

Download a Debian release file signature.

Copy to clipboard
GET <route-prefix>/dists/*distribution/Release.gpg
AttributeTypeRequiredDescription
distributionstringyesThe codename or suite of the Debian distribution.
Copy to clipboard
curl --header "Private-Token: <personal_access_token>" "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/Release.gpg"

Write the output to a file:

Copy to clipboard
curl --header "Private-Token: <personal_access_token>" \
     "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/Release.gpg" \
     --remote-name

This writes the downloaded file using the remote filename in the current directory.

Download a packages index

Download a packages index.

Copy to clipboard
GET <route-prefix>/dists/*distribution/:component/binary-:architecture/Packages
AttributeTypeRequiredDescription
distributionstringyesThe codename or suite of the Debian distribution.
componentstringyesThe distribution component name.
architecturestringyesThe distribution architecture type.
Copy to clipboard
curl --header "Private-Token: <personal_access_token>" "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/binary-amd64/Packages"

Write the output to a file:

Copy to clipboard
curl --header "Private-Token: <personal_access_token>" \
     "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/binary-amd64/Packages" \
     --remote-name

This writes the downloaded file using the remote filename in the current directory.

Download a packages index by hash

History

Download a packages index by hash.

Copy to clipboard
GET <route-prefix>/dists/*distribution/:component/binary-:architecture/by-hash/SHA256/:file_sha256
AttributeTypeRequiredDescription
distributionstringyesThe codename or suite of the Debian distribution.
componentstringyesThe distribution component name.
architecturestringyesThe distribution architecture type.
Copy to clipboard
curl --header "Private-Token: <personal_access_token>" "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/binary-amd64/by-hash/SHA256/66a045b452102c59d840ec097d59d9467e13a3f34f6494e539ffd32c1bb35f18"

Write the output to a file:

Copy to clipboard
curl --header "Private-Token: <personal_access_token>" \
     "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/binary-amd64/by-hash/SHA256/66a045b452102c59d840ec097d59d9467e13a3f34f6494e539ffd32c1bb35f18" \
     --remote-name

This writes the downloaded file using the remote filename in the current directory.

Download a Debian Installer packages index

History

Download a Debian Installer packages index.

Copy to clipboard
GET <route-prefix>/dists/*distribution/:component/debian-installer/binary-:architecture/Packages
AttributeTypeRequiredDescription
distributionstringyesThe codename or suite of the Debian distribution.
componentstringyesThe distribution component name.
architecturestringyesThe distribution architecture type.
Copy to clipboard
curl --header "Private-Token: <personal_access_token>" "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/debian-installer/binary-amd64/Packages"

Write the output to a file:

Copy to clipboard
curl --header "Private-Token: <personal_access_token>" \
     "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/debian-installer/binary-amd64/Packages" \
     --remote-name

This writes the downloaded file using the remote filename in the current directory.

Download a Debian Installer packages index by hash

History

Download a Debian Installer packages index by hash.

Copy to clipboard
GET <route-prefix>/dists/*distribution/:component/debian-installer/binary-:architecture/by-hash/SHA256/:file_sha256
AttributeTypeRequiredDescription
distributionstringyesThe codename or suite of the Debian distribution.
componentstringyesThe distribution component name.
architecturestringyesThe distribution architecture type.
Copy to clipboard
curl --header "Private-Token: <personal_access_token>" "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/debian-installer/binary-amd64/by-hash/SHA256/66a045b452102c59d840ec097d59d9467e13a3f34f6494e539ffd32c1bb35f18"

Write the output to a file:

Copy to clipboard
curl --header "Private-Token: <personal_access_token>" \
     "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/debian-installer/binary-amd64/by-hash/SHA256/66a045b452102c59d840ec097d59d9467e13a3f34f6494e539ffd32c1bb35f18" \
     --remote-name

This writes the downloaded file using the remote filename in the current directory.

Download a source packages index

History

Download a source packages index.

Copy to clipboard
GET <route-prefix>/dists/*distribution/:component/source/Sources
AttributeTypeRequiredDescription
distributionstringyesThe codename or suite of the Debian distribution.
componentstringyesThe distribution component name.
Copy to clipboard
curl --header "Private-Token: <personal_access_token>" "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/source/Sources"

Write the output to a file:

Copy to clipboard
curl --header "Private-Token: <personal_access_token>" \
     "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/source/Sources" \
     --remote-name

This writes the downloaded file using the remote filename in the current directory.

Download a source packages index by hash

History

Download a source packages index by hash.

Copy to clipboard
GET <route-prefix>/dists/*distribution/:component/source/by-hash/SHA256/:file_sha256
AttributeTypeRequiredDescription
distributionstringyesThe codename or suite of the Debian distribution.
componentstringyesThe distribution component name.
Copy to clipboard
curl --header "Private-Token: <personal_access_token>" "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/source/by-hash/SHA256/66a045b452102c59d840ec097d59d9467e13a3f34f6494e539ffd32c1bb35f18"

Write the output to a file:

Copy to clipboard
curl --header "Private-Token: <personal_access_token>" \
     "https://gitlab.example.com/api/v4/projects/1/packages/debian/dists/my-distro/main/source/by-hash/SHA256/66a045b452102c59d840ec097d59d9467e13a3f34f6494e539ffd32c1bb35f18" \
     --remote-name

This writes the downloaded file using the remote filename in the current directory.