Zum Inhalt springen
GET /v1/ddm

Gordon Growth model

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

Beispiel-Response

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

{
    "data": {
        "note": "Gordon Growth model: fair value = D1 / (r − g), where D1 is next year's dividend, r the required return and g the perpetual growth rate (all as fractions). Requires r > g.",
        "inputs": {
            "growth_rate": 5,
            "next_dividend": 2.1,
            "required_return": 10,
            "current_dividend": 2
        },
        "intrinsic_value": 42
    },
    "meta": {
        "timestamp": "2026-06-05T21:48:46.105Z",
        "request_id": "cd7f9153-d530-4778-af41-d64ea761379d"
    },
    "status": "ok",
    "message": "Dividend discount model",
    "success": true
}