/v1/hawking
Hawking temperature
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}