Vai al contenuto
GET /v1/hawking

Hawking temperature

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/schwarzschild-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/schwarzschild-api/v1/hawking" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/schwarzschild-api/v1/hawking", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/schwarzschild-api/v1/hawking");
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/schwarzschild-api/v1/hawking",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Hawking temperature T = ħc³/(8πGMk_B) — smaller black holes are hotter. Evaporation time scales as M³; a solar-mass black hole would take ~10^67 years to evaporate.",
        "inputs": {
            "mass_kg": 1.98892e+30,
            "solar_masses": 1
        },
        "evaporation_time_s": 6.617961757605733e+74,
        "hawking_temperature_k": 6.168677824358303e-8,
        "evaporation_time_years": 2.0971055332489585e+67
    },
    "meta": {
        "timestamp": "2026-06-05T19:50:33.596Z",
        "request_id": "a0aca178-bc8a-43b9-b94a-d3b6f7a1f13b"
    },
    "status": "ok",
    "message": "Hawking temperature",
    "success": true
}