/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/dividends-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dividends-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dividends-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/dividends-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"source": "Yahoo Finance dividend events + search (live)",
"service": "dividends-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/search": "Find a ticker by company name (q=coca).",
"GET /v1/history": "Full dividend payment history (symbol, years up to 10).",
"GET /v1/dividends": "TTM dividend, yield, frequency, last payment (symbol=AAPL or name=Apple)."
},
"description": "Live stock dividend data from Yahoo Finance: for any ticker, the trailing-twelve-month dividend per share, the dividend yield, the payment frequency (monthly/quarterly/semi-annual/annual), the most recent payment with its date, and the dividend payment history. Look up by ticker or company name, or pull multi-year history. Non-paying stocks are reported with a zero yield. Live, no key. Distinct from dividend-ratio calculators and price-quote APIs — this returns the actual dividends paid.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T03:02:12.744Z",
"request_id": "508a2fa9-4c52-4fc5-bd46-b8ecaf1b4800"
},
"status": "ok",
"message": "Meta",
"success": true
}