/v1/strong
pH of a strong acid or base
Δοκιμάστε το ζωντανά
Μία δωρεάν κλήση ανά συνεδρία — χωρίς εγγραφή, χωρίς κλειδί API. Περνάει την πύλη του Oanor.
Αποσπάσματα κώδικα
curl "https://api.oanor.com/phcalc-api/v1/strong" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/phcalc-api/v1/strong", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/phcalc-api/v1/strong");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/phcalc-api/v1/strong",
headers={"x-oanor-key": "oanor_test_..."}
)