Finance.Foundation
finance.foundation / Assets / Italian 10-Year BTP
Asset · Bond · Government bond

Italian 10-Year BTP

Italy's 10-year Buono del Tesoro Poliennale, the benchmark for one of the largest sovereign debt markets in the world. Its yield spread over the German Bund is the standard market gauge of eurozone fragmentation risk.

This asset is futures listed on the venue linked above — a typed relationship in the dataset, not a name that happened to match. The parties named after it (MTS (cash trading platform), OTC interdealer market) matter to how it trades but are not entities here.

No live level is shown for this asset: our open, keyless sources cover crypto, major FX crosses, the ECB policy rate, the US 10-year yield and US CPI — index levels and commodity prices are only available from licensed vendors, and we do not publish figures we cannot source openly. What we do carry.

Symbol
IT10Y
Type
Bond
Category
Government bond
Quote currency
EUR
Primary venue
Eurex Deutschland · also MTS (cash trading platform), OTC interdealer market
Issuer
Italian Ministry of Economy and Finance
Identifier
A ten-year benchmark is a concept rather than a security, so the row itself has no identifier. The note it currently tracks has one, and we publish that only where we could retrieve it from the issuer and date it.

Approximate reference values from public sources · seed-0.7 · marketcap-1 · 2026-08-30 · not real-time. See data & methodology.

# this page as data GET https://finance.foundation/api/v1/assets/italy-btp-10y

JSONCSV No key, CORS enabled — paste any of these straight into a notebook.

Code to fetch it
curl
curl -s https://finance.foundation/api/v1/assets/italy-btp-10y
Python
import requests r = requests.get("https://finance.foundation/api/v1/assets/italy-btp-10y", timeout=30) r.raise_for_status() data = r.json()
JavaScript
const r = await fetch("https://finance.foundation/api/v1/assets/italy-btp-10y"); if (!r.ok) throw new Error(r.status); const data = await r.json();
pandas
import pandas as pd df = pd.read_csv("https://finance.foundation/api/v1/assets/italy-btp-10y.csv")