Loading...
Please wait while we prepare your experience
Loading...
Please wait while we prepare your experience
Welcome! This API allows you to query live computational experiment data on complex systems including the Lorenz attractor and the logistic map. All endpoints return fully typed JSON. No authentication required.
No authentication required.
https://mileswaite.net/apiList all studies (optionally filter by system type)
curl "https://mileswaite.net/api/studies/chaos?system_type=logistic&limit=2"JavaScript fetch:fetch("/api/studies/chaos?system_type=logistic&limit=2").then(r=>r.json()){ "studies": [ { "id": "...", "name": "...", "system_type": "logistic" } ], "total": 1 }Get a specific Lorenz study by UUID
curl "https://mileswaite.net/api/studies/lorenz/00000000-0000-0000-0000-000000000001"JavaScript fetch:fetch("/api/studies/lorenz/00000000-0000-0000-0000-000000000001").then(r=>r.json()){ "study": { ... }, ... }Get a specific logistic map study by UUID
curl "https://mileswaite.net/api/studies/logistic/00000000-0000-0000-0000-000000000002"JavaScript fetch:fetch("/api/studies/logistic/00000000-0000-0000-0000-000000000002").then(r=>r.json()){ "study": { ... }, ... }Retrieve bifurcation data for a logistic study
curl "https://mileswaite.net/api/studies/logistic/00000000-0000-0000-0000-000000000002/bifurcation?r_min=3.5&r_max=4.0"JavaScript fetch:fetch("/api/studies/logistic/00000000-0000-0000-0000-000000000002/bifurcation?r_min=3.5&r_max=4.0").then(r=>r.json()){ "points": [ ... ], ... }fetch('/api/studies/chaos?system_type=logistic&limit=2')
.then(r => r.json())
.then(console.log);import requests
r = requests.get('https://mileswaite.net/api/studies/chaos?system_type=logistic&limit=2')
print(r.json())curl "https://mileswaite.net/api/studies/chaos?system_type=logistic&limit=2"