How to fetch the current fedora version number from the web?

curl -s -L https://fedoraproject.org/releases.json \
| jq -r '[.[].version|select(test("^[0-9]+$"))]|max'
4 Likes