Sign in

Get VSIX package

documented

Download the VSIX package for a specific extension version.

GET marketplace.visualstudio.com/_apis/public/gallery/publishers/{publisher}/vsextensions/{extension}/{version}/vspackage?api-version=3.0-preview.1Extensionsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://marketplace.visualstudio.com/_apis/public/gallery/publishers/{{$publisher}}/vsextensions/{{$extension}}/{{$version}}/vspackage?api-version=3.0-preview.1" \
  -L \
  -X GET \
  -H "Accept: application/octet-stream" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/octet-stream" \
  -o "{{$publisher}}-{{$extension}}-{{$version}}.vsix"