Zum Inhalt springen
GET /v1/bond

A single public bond by symbol

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

Beispiel-Response

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

{
    "data": {
        "bond": {
            "name": null,
            "vwap": 120873.5100931,
            "price": 120700,
            "symbol": "AE38",
            "currency": "ARS",
            "day_high": 121700,
            "trade_volume": 3747516,
            "maturity_date": "2038-01-09",
            "opening_price": 120000,
            "previous_close": 120490,
            "days_to_maturity": 4227
        },
        "note": "One BYMA public bond by symbol — price, previous close, opening price, day high, VWAP, volume, maturity date and days to maturity. Pass symbol (e.g. AE38, GD30).",
        "source": "BYMA"
    },
    "meta": {
        "timestamp": "2026-06-15T02:11:00.945Z",
        "request_id": "5544576a-9eb9-41e8-b75a-8e72d29d6f82"
    },
    "status": "ok",
    "message": "Bond retrieved successfully",
    "success": true
}