BashJavaScriptPython
curl https://reqres.in/api/users
fetch("https://reqres.in/api/users")
.then(r => r.json())
.then(console.log);
import requests
print(requests.get("https://reqres.in/api/users").json())
curl https://reqres.in/api/users
fetch("https://reqres.in/api/users")
.then(r => r.json())
.then(console.log);
import requests
print(requests.get("https://reqres.in/api/users").json())