Tool for testing APIs
Postman is a powerful platform designed for testing, developing, and managing APIs.
import requests
url = "https://api.postman.com/workspaces"
headers = {
"X-Api-Key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
response.raise_for_status() # Raise an exception for HTTP errors
print(response.json())Last 50 checks (10 min intervals)