/v1/bonds
Bond market with prices, yields & maturities
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/moex-api/v1/bonds" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/moex-api/v1/bonds", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/moex-api/v1/bonds");
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/moex-api/v1/bonds",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "The MOEX bond market — government (OFZ) and corporate bonds, each with its clean price, yield to maturity, maturity date, coupon and face value. Pass limit (1-100, default 30). The Russian fixed-income tape.",
"bonds": [
{
"name": "ОФЗ 26207",
"price": 93.0154,
"secid": "SU26207RMFS9",
"yield": 0,
"currency": "SUR",
"face_value": 1000,
"coupon_value": 40.64,
"maturity_date": "2027-02-03",
"coupon_percent": 8.15
},
{
"name": "ОФЗ 26212",
"price": 104.12,
"secid": "SU26212RMFS9",
"yield": 12.71,
"currency": "SUR",
"face_value": 1000,
"coupon_value": 35.15,
"maturity_date": "2028-01-19",
"coupon_percent": 7.05
},
{
"name": "ОФЗ 26218",
"price": 111.8131,
"secid": "SU26218RMFS6",
"yield": 0,
"currency": "SUR",
"face_value": 1000,
"coupon_value": 42.38,
"maturity_date": "2031-09-17",
"coupon_percent": 8.5
},
{
"name": "ОФЗ 26219",
"price": 100.4495,
"secid": "SU26219RMFS4",
"yield": 0,
"currency": "SUR",
"face_value": 1000,
"coupon_value": 38.64,
"maturity_date": "2026-09-16",
"coupon_percent": 7.75
},
{
"name": "ОФЗ 26221",
"price": 86.615,
"secid": "SU26221RMFS0",
"yield": 0,
"currency": "SUR",
"face_value": 1000,
"coupon_value": 38.39,
"maturity_date": "2033-03-23",
"coupon_percent": 7.7
},
{
"name": "ОФЗ 26224",
"price": 100.2755,
"secid": "SU26224RMFS4",
"yield": 0,
"currency": "SUR",
"face_value": 1000,
"coupon_value": 34.41,
"maturity_date": "2029-05-23",
"coupon_percent": 6.9
},
{
"name": "ОФЗ 26225",
"price": 101.1697,
"secid": "SU26225RMFS1",
"yield": 0,
"currency": "SUR",
"face_value": 1000,
"coupon_value": 36.15,
"maturity_date": "2034-05-10",
"coupon_percent": 7.25
},
{
"name": "ОФЗ 26226",
"price": 113.1385,
"secid": "SU26226RMFS9",
"yield": 0,
"currency
…