/v1/roots
Find all roots
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/polynomial-api/v1/roots" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/polynomial-api/v1/roots", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/polynomial-api/v1/roots");
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/polynomial-api/v1/roots",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"roots": [
{
"im": 0,
"re": 1,
"is_real": true
},
{
"im": 0,
"re": 2,
"is_real": true
},
{
"im": 0,
"re": 3,
"is_real": true
}
],
"degree": 3,
"real_roots": [
1,
2,
3
]
},
"meta": {
"timestamp": "2026-06-03T17:42:15.273Z",
"request_id": "26c7e332-6d5b-478f-b8d9-265037bdf5e5"
},
"status": "ok",
"message": "Roots",
"success": true
}