Free JSON storage service. Ideal for small scale Web apps, Websites and Mobile apps
JSONBin.io offers free JSON storage and hosting, ideal for web, mobile apps, and JSON mocking.
import requests
import json
url = "https://api.jsonbin.io/v3/b"
headers = {
"Content-Type": "application/json",
"X-Master-Key": "YOUR_MASTER_KEY"
}
data = {"message": "Hello from JSONbin.io!", "timestamp": "2023-10-27T10:00:00Z"}
response = requests.post(url, headers=headers, data=json.dumps(data))
print(response.json())Last 50 checks (10 min intervals)