Zum Inhalt springen
GET /v1/bonds

The public-bond market

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/byma-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "The BYMA public-bond market — Argentine sovereign and public bonds, each with its price, previous close, opening price, day high, VWAP, volume, maturity date and days to maturity. Sort by symbol (default), volume or maturity; page with offset and limit (max 200).",
        "sort": "maturity",
        "bonds": [
            {
                "name": null,
                "vwap": 0,
                "price": 104,
                "symbol": "BL26X",
                "currency": "ARS",
                "day_high": 0,
                "trade_volume": 0,
                "maturity_date": "2026-07-14",
                "opening_price": 0,
                "previous_close": 104,
                "days_to_maturity": 30
            },
            {
                "name": null,
                "vwap": 1,
                "price": 0,
                "symbol": "BL2L6.SB",
                "currency": "ARS",
                "day_high": 0,
                "trade_volume": 0,
                "maturity_date": "2026-07-17",
                "opening_price": 0,
                "previous_close": 0,
                "days_to_maturity": 33
            },
            {
                "name": null,
                "vwap": 0,
                "price": 133246.8103,
                "symbol": "AL03A",
                "currency": "ARS",
                "day_high": 0,
                "trade_volume": 0,
                "maturity_date": "2026-09-08",
                "opening_price": 0,
                "previous_close": 133246.8103,
                "days_to_maturity": 86
            },
            {
                "name": null,
                "vwap": 0,
                "price": 31.6986,
                "symbol": "BAS26",
                "currency": "ARS",
                "day_high": 0,
                "trade_volume": 0,
                "maturity_date": "2026-09-09",
                "opening_price": 0,
                "previous_close": 31.6986,
                "days_to_maturity": 87
            },
            {
                "name": null,
                "vwap": 0,
                "price": 31.6986,
                "symbol": "BAS26",
                "currency": "ARS",
                "day_high": 0,
                "trade_volume": 0,
                "maturity_date": "2026-09-09",
                "opening_price": 0,
                "previous_close": 31.6986,
                "days_to_maturity": 87
            },
            {
                "name": null,
                "vwap": 0,
                "price": 0.0218,
                "symbol": "BAS6D",
                "currency": "USD",
                "day_high": 0,
                "trade_volume": 0,
                "maturity_date": "2026-09-09",
                "opening_price": 0,
                "previous_close": 0.0218,
                "days_to_maturity": 87
            },
            {
                "name": null,
                "vwap": 0,
                "price": 0.0143,
                "symbol": "BAS6D",

…