/v1/meta
Spec
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/phcalc-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/phcalc-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/phcalc-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"api": "phcalc",
"note": "pH / acid-base maths — computed locally and deterministically, no key, no third-party service. Kw defaults to 1e-14 (25 °C).",
"endpoints": [
"/v1/ph",
"/v1/strong",
"/v1/buffer",
"/v1/meta"
],
"default_pKw": 14
},
"meta": {
"timestamp": "2026-06-04T10:18:56.228Z",
"request_id": "f896586d-a878-498b-9421-de4f9c91a44e"
},
"status": "ok",
"message": "Meta",
"success": true
}