/v1/meta
Spec
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/realestate-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/realestate-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/realestate-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/realestate-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": {
"notes": "Money in, ratios out — use one consistent currency. NOI is before debt; cash-on-cash and DSCR add financing. For pure loan amortization use a loan API; for DCF/NPV use an investment-appraisal API.",
"service": "realestate-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/metrics": "Quick screening ratios — 1% rule, gross yield, GRM, price per sqft.",
"GET /v1/cap-rate": "NOI, capitalization rate and GRM (unlevered).",
"GET /v1/cash-flow": "Financed analysis: mortgage payment, cash-on-cash return, DSCR, LTV."
},
"description": "Real-estate investment maths: cap rate, NOI, cash-on-cash return, DSCR, GRM and screening ratios."
},
"meta": {
"timestamp": "2026-06-05T19:50:10.316Z",
"request_id": "ac415721-d5ba-48e3-978b-61c3fe191116"
},
"status": "ok",
"message": "Meta",
"success": true
}