Hi Open VSX team, When configuring VS Code to use Open VSX by setting the following in the ״product.json״: ```json "extensionsGallery": { "serviceUrl": "https://open-vsx.org/vscode/gallery" } ``` The request sent to retrieve the **latest version** of an extension looks like this: ``` https://open-vsx.org/vscode/gallery/vscode/{publisher}/{name}/latest ``` However, according to the [[Open VSX latest documentation](https://open-vsx.org/swagger-ui/index.html?urls.primaryName=VSCode+Adapter#/vs-code-api/getLatest)], the correct path should be: ``` https://open-vsx.org/vscode/gallery/{publisher}/{name}/latest ``` This results in an error, See the attached screenshot for reference. <img width="1584" height="832" alt="Image" src="https://github.com/user-attachments/assets/c6931d11-166d-45da-881d-c8759fc0f9ad" /> * Is this a known issue? * Should the registry handle the extra `/vscode/` prefix? Thanks in advance! ---