You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-15
Original file line number
Diff line number
Diff line change
@@ -19,27 +19,26 @@ You can append the following paths to the `https://api.adoptopenjdk.net` URL, ei
19
19
20
20
|Path |Returns |
21
21
|-------------------|---------|
22
-
|`/releases`|All releases, all platforms. |
23
-
|`/releases/latest`|The latest release, all platforms.|
24
-
|`/releases/<platform>`|All releases, one specified platform.|
25
-
|`/releases/<platform>/latest`|The latest release, one specified platform.|
26
-
|`/nightly`|All nightly builds, all platforms.|
27
-
|`/nightly/latest`|The latest nightly build, all platforms. |
28
-
|`/nightly/<platform>`|All nightly builds, one specified platform.|
29
-
|`/nightly/<platform>/latest`|The latest nightly build, one specified platform.|
22
+
|[`/releases`](https://api.adoptopenjdk.net/releases)|All releases, all platforms. |
23
+
|[`/releases/latest`](https://api.adoptopenjdk.net/releases/latest)|The latest release, all platforms.|
24
+
|[`/releases/<platform>`](https://api.adoptopenjdk.net/releases/x64_linux/)|All releases, one specified platform.|
25
+
|[`/releases/<platform>/latest`](https://api.adoptopenjdk.net/releases/x64_linux/latest)|The latest release, one specified platform.|
26
+
|[`/nightly`](https://api.adoptopenjdk.net/nightly/)|All nightly builds, all platforms.|
27
+
|[`/nightly/latest`](https://api.adoptopenjdk.net/nightly/latest)|The latest nightly build, all platforms. |
28
+
|[`/nightly/<platform>`](https://api.adoptopenjdk.net/nightly/x64_linux)|All nightly builds, one specified platform.|
29
+
|[`/nightly/<platform>/latest`](https://api.adoptopenjdk.net/nightly/x64_linux/latest)|The latest nightly build, one specified platform.|
30
30
31
31
### Platforms
32
32
You can specify a platform by inserting one of the following names, in upper-case or lower-case, where you see `<platform>` in the path options:
33
33
34
-
35
34
|Platform |Route |
36
35
|-------|---------|
37
-
| Linux - x64 |`/x64_linux`|
38
-
| Mac - x64 |`/x64_mac`|
39
-
| Windows - x64 |`/x64_win`|
40
-
| Linux - s390x |`/s390x_linux`|
41
-
| Linux - ppc64le |`/ppc64le_linux`|
42
-
| Linux - aarch64 |`/aarch64_linux`|
36
+
| Linux - x64 |[`/x64_linux`](https://api.adoptopenjdk.net/releases/x64_linux/)|
37
+
| Mac - x64 |[`/x64_mac`](https://api.adoptopenjdk.net/releases/x64_mac/)|
38
+
| Windows - x64 |[`/x64_win`](https://api.adoptopenjdk.net/releases/x64_win/)|
39
+
| Linux - s390x |[`/s390x_linux`](https://api.adoptopenjdk.net/releases/s390x_linux)|
40
+
| Linux - ppc64le |[`/ppc64le_linux`](https://api.adoptopenjdk.net/releases/ppc64le_linux)|
41
+
| Linux - aarch64 |[`/aarch64_linux`](https://api.adoptopenjdk.net/releases/aarch64_linux)|
43
42
44
43
### Additional options
45
44
By default, the API returns a pretty-printed JSON. You can disable this pretty-printing by appending `?pretty=false` to the end of any URL. For example:
0 commit comments