How to read JSON from HTML?

The answer with HTTP.jl:

using HTTP, JSON

resp = HTTP.get("https://api.github.com/users/juliohm")
str = String(resp.body)
jobj = JSON.Parser.parse(s)
3 Likes