BTC/USD
LiveBITCOIN / US DOLLAR · Crypto
Price
$64,408.2
Confidence (±)
±$14.99
±0.0233%
Last Update
just now
Quote
USD
Confidence Band
Pyth Feed ID
0xe62df6c8b4a85fe1a67db44dc12de5db330f7ac66b72dc658afedf0f4a415b43
About the BTC/USD Pyth feed
The BTC/USD feed (BITCOIN / US DOLLAR) is an aggregated crypto price published on-chain by the Pyth Network — a first-party oracle sourcing quotes from institutional publishers including exchanges, market makers and trading firms. Each update carries a confidence interval (±), an exponent and a publish timestamp, currently around $64,408.2. PythFeeds streams this feed live from the Hermes API and surfaces its staleness so you can see exactly how fresh the oracle price is.
On-chain (Solidity)
// Read BTC/USD on-chain with the Pyth pull oracle
bytes32 constant BTC_USD =
0xe62df6c8b4a85fe1a67db44dc12de5db330f7ac66b72dc658afedf0f4a415b43;
PythStructs.Price memory p =
pyth.getPriceNoOlderThan(BTC_USD, 60); // revert if >60s stale
// real price = p.price * 10 ** p.expoOff-chain (Hermes API)
// Fetch the latest BTC/USD price off-chain (Hermes REST)
const id = "0xe62df6c8b4a85fe1a67db44dc12de5db330f7ac66b72dc658afedf0f4a415b43";
const res = await fetch(
`https://hermes.pyth.network/v2/updates/price/latest?ids[]=${id}&parsed=true`
);
const { parsed } = await res.json();
const p = parsed[0].price;
const price = Number(p.price) * 10 ** p.expo;