Zum Inhalt springen
GET /v1/valuation

P/E, PEG, P/B, Graham

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/dividend-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "P/E = price / EPS; earnings yield = EPS / price. PEG = P/E ÷ growth%; under 1 is often called cheap-for-growth. Graham number = √(22.5 · EPS · book value) — a rough fair-value ceiling.",
        "inputs": {
            "eps": 4,
            "price": 50
        },
        "pb_ratio": 2.5,
        "pe_ratio": 12.5,
        "peg_ratio": 1.25,
        "growth_rate": 10,
        "graham_number": 42.4264,
        "book_value_per_share": 20,
        "earnings_yield_percent": 8
    },
    "meta": {
        "timestamp": "2026-06-05T21:48:46.283Z",
        "request_id": "92e12145-098b-4560-95de-a69f85716800"
    },
    "status": "ok",
    "message": "Valuation ratios",
    "success": true
}