Ir al contenido
GET /v1/auctions

Most recent auctions

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/treasuryauctions-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "count": 10,
        "source": "US Treasury (FiscalData)",
        "auctions": [
            {
                "term": "29-Year 11-Month",
                "cusip": "912810UU0",
                "reopening": true,
                "issue_date": "2026-06-15",
                "auction_date": "2026-06-11",
                "maturity_date": "2056-05-15",
                "price_per_100": null,
                "security_type": "Bond",
                "high_yield_pct": null,
                "total_accepted": null,
                "offering_amount": 22000000000,
                "interest_rate_pct": 5,
                "bid_to_cover_ratio": null,
                "high_discount_rate_pct": null
            },
            {
                "term": "20-Year",
                "cusip": "912810UV8",
                "reopening": false,
                "issue_date": "2026-06-01",
                "auction_date": "2026-05-20",
                "maturity_date": "2046-05-15",
                "price_per_100": 98.481099,
                "security_type": "Bond",
                "high_yield_pct": 5.122,
                "total_accepted": 18360688200,
                "offering_amount": 16000000000,
                "interest_rate_pct": 5,
                "bid_to_cover_ratio": 2.55,
                "high_discount_rate_pct": null
            },
            {
                "term": "30-Year",
                "cusip": "912810UU0",
                "reopening": false,
                "issue_date": "2026-05-15",
                "auction_date": "2026-05-13",
                "maturity_date": "2056-05-15",
                "price_per_100": 99.292811,
                "security_type": "Bond",
                "high_yield_pct": 5.046,
                "total_accepted": 30936165500,
                "offering_amount": 25000000000,
                "interest_rate_pct": 5,
                "bid_to_cover_ratio": 2.3,
                "high_discount_rate_pct": null
            },
            {
                "term": "19-Year 10-Month",
                "cusip": "912810UT3",
                "reopening": true,
                "issue_date": "2026-04-30",
                "auction_date": "2026-04-22",
                "maturity_date": "2046-02-15",
                "price_per_100": 96.735962,
                "security_type": "Bond",
                "high_yield_pct": 4.883,
                "total_accepted": 14636144300,
                "offering_amount": 13000000000,
                "interest_rate_pct": 4.625,
                "bid_to_cover_ratio": 2.68,
                "high_discount_rate_pct": null
            },
            {
                "term": "29-Year 10-Month",
                "cusip": "912810UR7",
                "reopening": true,
                "issue_date": "2026-04-15",
                "auction_date": "2026-04-09",
                "maturity_date": "2056-02-15",
                "price_per_100": 98.017194,
                "security_type": "Bond",
                "high_yield_
…