/v1/evaluate
Evaluate p(x) and p'(x)
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/polynomial-api/v1/evaluate" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/polynomial-api/v1/evaluate", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/polynomial-api/v1/evaluate");
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/evaluate",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"x": 5,
"value": 12,
"degree": 2,
"derivative_value": 7
},
"meta": {
"timestamp": "2026-06-03T17:42:15.081Z",
"request_id": "dfcf5e46-9996-49a6-9220-811b616705bc"
},
"status": "ok",
"message": "Evaluate",
"success": true
}