Μετάβαση στο περιεχόμενο
GET /v1/meta

Spec

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/treasuryauctions-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}