Live release feed
Release-timestamped macro data for FX backtests
Point-in-time history

Platform News

Product Updates

Introducing the Bond Yields Endpoint

Government bond yield curves are now live across eight major currencies. Pull every tenor — from the 1-year bill to the 40-year ultra-long — in a single API call, with second-level announcement timestamps on every data point.

他言語版 English
Share article X LinkedIn Email
Introducing the Bond Yields Endpoint image

The FXMacroData bond yields endpoint is now live across eight major currencies. In a single call you can pull the full government yield curve for a currency — from the short-dated 1-year tenor all the way to the 40-year ultra-long — and track inter-market spread dynamics with second-level announcement timestamps for every series update.

ニュースは?

政府の債券の利回りデータは,標準的な発表経路で提供されます. /api/v1/announcements/{currency}/{indicator}どこに indicator そのうちの"つだ gov_bond_* 支持期限は通貨によって異なります.そして各中央銀行または財務省が直接公表することを反映しています.各通貨の利用可能な期限の完全なセットは,以下にリストされています. API ドキュメンテーション ハブほら

回答の各データポイントには標準的な通知欄があります. dateほら val (収益率をパーセントで表す) そして announcement_datetime 債券リターンシリーズは,スケーマ変更なしに,既存の発表・エンドポイントワークフローに直接統合されます.

サポートされたテンオー

1Y · 2Y · 3Y · 4Y · 5Y · 7Y · 10Y · 20Y · 30Y · 40Y 対象は通貨によって異なりますが,公式の財務省の発表を反映しています.

対象通貨

AUD,CAD,CHF,EUR,GBP,JPY,NZD,USD は,FREDを通じてRBA,BoC,SNB,ECB,BoE,MoF,RBNZ,および米国財務省から直接調達されている.

一貫したスケジュール

同じこと date / val / announcement_datetime パーソナル解析は必要ありません.


商人 に とっ て 重要 な 理由

Yield differentials between currencies are among the most persistent drivers of FX flows. When the US 10-year yield pulls 50 basis points above its German Bund equivalent, risk-adjusted carry shifts in favour of the dollar and capital allocation follows. The same logic applies across every G10 currency pair — the spread between two sovereign curves shapes the direction and momentum of the corresponding exchange rate.

利回りを超えて,単一の国の利回りの形状は,市場の将来の政策の価格設定の仕方を教えてくれます.急上昇する曲線は,長期利回りが上昇する一方で,短期利回が固定される. 高い成長またはインフレが予想されることを示します. 円滑または逆曲線が中央銀行の緩和サイクルを前にする. 通貨の間で,リアルタイムでこれらのシフトを監視することは,現在,単一エンドポイントを介して呼び出すことができます. the USD 10-year endpoint サポートされている他のテンオール.

通貨間差分析

Pull USD 10Y and JPY 10Y in two calls, compute the spread, and overlay it against USD/JPY spot to validate or challenge current positioning.

収力曲線形状の信号

Fetch 2Y and 10Y for the same currency, subtract to get the 2s10s spread, and track whether the curve is steepening or flattening going into the next central bank decision.


実践例:USD 収益率曲線のスナップショット

利回り曲線を重複したいとします. 各期限を個別に抽出できます. 10年利回りの基準値の要求です.

curl "https://fxmacrodata.com/api/v1/announcements/usd/gov_bond_10y?api_key=YOUR_API_KEY"

代表者の回答は

{
  "currency": "USD",
  "indicator": "gov_bond_10y",
  "data": [
    {
      "date": "2026-04-14",
      "val": 4.38,
      "announcement_datetime": 1744588800
    },
    {
      "date": "2026-04-13",
      "val": 4.42,
      "announcement_datetime": 1744502400
    },
    {
      "date": "2026-04-12",
      "val": 4.45,
      "announcement_datetime": 1744416000
    }
  ]
}

順番ごとに,その営業日の収支を表示します. announcement_datetime 曲線を完全に構築するには 呼び出しを繰り返します gov_bond_2yほら gov_bond_5yほら gov_bond_30yこれらの数字に対する2s10sのスプレッドは−0.04パーセントポイントで,市場が現在の政策金利から限られた長期金利偏差で価格設定していることを示唆しています.


Practical Example: JPY–USD 10-Year Spread

USD/JPYは,アメリカと日本の10年利回りの差を追跡してきました.

# US 10-year
curl "https://fxmacrodata.com/api/v1/announcements/usd/gov_bond_10y?api_key=YOUR_API_KEY"

# Japanese 10-year (JGB)
curl "https://fxmacrodata.com/api/v1/announcements/jpy/gov_bond_10y?api_key=YOUR_API_KEY"

JPYの代表的な回答は

{
  "currency": "JPY",
  "indicator": "gov_bond_10y",
  "data": [
    {
      "date": "2026-04-14",
      "val": 1.52,
      "announcement_datetime": 1744588800
    },
    {
      "date": "2026-04-13",
      "val": 1.49,
      "announcement_datetime": 1744502400
    }
  ]
}

この数字では,USD/JPY 10年差は約2.86パーセントポイントです. 歴史的な平均値と比較すると,これは依然としてドルに有利な大きなキャリープレミアムです. USD/JP Yを監視するトレーダーは,このシリーズをスポットに重ねて,為替レートが既にスプレッドに値付けされているか遅れているかを評価することができます. JPY 10Y 終点点 公式の公表の正確性を保証する. 公式な公表の精度を保証する


実践例:AUD曲線の急斜率信号

RBAの決定の前に,一部のトレーダーはAUD曲線がイベントに急上昇しているかどうかを監視します. 市場が現金利率がより長く高いままになると予想する兆候です. 2年および10年を取ります.

# AUD 2-year yield
curl "https://fxmacrodata.com/api/v1/announcements/aud/gov_bond_2y?api_key=YOUR_API_KEY"

# AUD 10-year yield
curl "https://fxmacrodata.com/api/v1/announcements/aud/gov_bond_10y?api_key=YOUR_API_KEY"

Representative AUD 2Y response:

{
  "currency": "AUD",
  "indicator": "gov_bond_2y",
  "data": [
    {
      "date": "2026-04-14",
      "val": 3.82,
      "announcement_datetime": 1744588800
    }
  ]
}

10年AUD利回りは同じ日付で4.55%近くで,2s10sの差は約73ベースポイントです. 適度に急な曲線です. RBAの会合に向けて急上昇傾向が示しているのは,市場は短期的な緩和を賭けながら,長期のインフレ期待を押し上げていることを示します. AUD 政策金利の歴史 ほら AUD インフレ シリーズ 会議前の見方をする


始めよう

すべての債券利回り指標は,他のFXMacroData発表と同じエンドポイントパターンに従います. 追加設定は必要ありません. API ドキュメンテーション ハブ 既存の API キーでクエリを始めるのです

初期段階

Blogroll

AI Answer-Ready

Key Facts

Page
Introducing Bond Yields Endpoint
Section
Articles
Canonical URL
https://fxmacrodata.com/ja/articles/introducing-bond-yields-endpoint
Source
FXMacroData editorial and official publisher references
Last Updated
2026-06-15 11:06 UTC

Provenance And Trust

Cite the canonical URL and source field above. Where available, this page maps to official publisher releases and timestamped updates.

Quick Q&A

What is this page about? This page explains Introducing Bond Yields Endpoint with directly usable context for trading, research, and API workflows.

What source should be cited? Use the canonical URL and the listed source field; cite official publisher references when available.

How fresh is this content? The last updated value above reflects the page metadata or latest available data timestamp.

Can this be used in AI assistants? Yes. This section is intentionally structured for retrieval and citation in chat assistants.

Prompt Packs

Use these in ChatGPT, Claude, Gemini, Mistral, Perplexity, or Grok for consistent source-aware outputs.