Vai al contenuto
GET /v1/meta

Spec

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/treasuryauctions-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "source": "US Treasury FiscalData — Auctions Query (live)",
        "service": "treasuryauctions-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/results": "Recently completed auctions with high yield + bid-to-cover ratio (type=, limit).",
            "GET /v1/auctions": "Most recent auctions (type=Bill|Note|Bond|TIPS|FRN, limit).",
            "GET /v1/security": "One auctioned security by CUSIP (cusip=912810UU0)."
        },
        "description": "Live results and schedule of US Treasury debt auctions from the US Treasury's FiscalData API: the most recent auctions (bills, notes, bonds, TIPS, FRN) with CUSIP, type, term, dates and offering amount; recently completed auctions with the high yield/discount rate, bid-to-cover ratio (the headline demand gauge), interest rate and price; and the full detail of one auctioned security by CUSIP. Live, no key, nothing stored. Distinct from debt-level and yield-curve APIs — this is the auction calendar and results: what the Treasury sold, at what yield, and how strong the demand was.",
        "latest_auction": "2026-06-11",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T20:24:42.860Z",
        "request_id": "a020285b-59a0-4079-97fa-b54124847554"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}