/v1/bond
A single public bond by symbol
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}