בדיקה

תוכן עניינים

תוכן עניינים

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())