Skip to content
GET /v1/meta

Spec

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/dividend-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "notes": "Per-share figures in one consistent currency; rates as percentages (10 = 10%). These are valuation ratios from your inputs — for live quotes use a market-data API and for DCF/NPV an investment-appraisal API.",
        "service": "dividend-api",
        "endpoints": {
            "GET /v1/ddm": "Gordon Growth intrinsic value and implied required return.",
            "GET /v1/meta": "This document.",
            "GET /v1/dividend": "Dividend yield, payout ratio and coverage from price, dividend and EPS.",
            "GET /v1/valuation": "P/E, PEG, P/B, earnings yield and Graham number."
        },
        "description": "Stock dividend & valuation fundamentals: yield/payout/coverage, P/E, PEG, P/B, earnings yield, Graham number and the Gordon Growth dividend discount model."
    },
    "meta": {
        "timestamp": "2026-06-05T21:48:46.376Z",
        "request_id": "7a31eef8-4f4a-4d33-8e18-3379710b02c9"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}