Vai al contenuto
GET /v1/ddm

Gordon Growth model

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/dividend-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}