Is there an equivalent page for IntelliJ IDEA rele...
# intellij
a
j
For full IDEA releases there is: https://www.jetbrains.com/idea/download/other.html and additional artifact releases are published there: https://www.jetbrains.com/intellij-repository/releases/
a
I was more looking for a program friendly api. I am trying to do some analysis on build data (from Develocity API) and wanted to correlate the raw build version for ides we store to more metadata (when was the IDE version released, what is it's platform version, etc.) similar to what you provide in json/xml for Android Studio.
j
(I'm not working for JetBrains) You could maybe open a feature request on youtrack.jetbrains.com against the
IJPL
or
IDEA
project, stating your use case above.
Inspecting the page from the link above it turns out they are already using an API. You can get the data from https://data.services.jetbrains.com/products?code=IIU,IIC&release.type=eap,rc,release&fields=distributions,link,name,releases
Copy code
[
  {
    "name": "IntelliJ IDEA Ultimate",
    "link": "<https://www.jetbrains.com/idea>",
    "releases": [
      {
        "date": "2025-08-29",
        "type": "release",
(...)
        "licenseRequired": true,
        "version": "2025.2.1",
        "majorVersion": "2025.2",
        "build": "252.25557.131",
(...)
thank you color 1
a
That's smart - thanks a ton for taking a peek and finding that! Exactly what I was after!