I can’t access live market data from here, so I can’t give the current Bitcoin price. If you want to check it right now, here are quick, reliable ways to get the live price and short commands you can run:

Websites/apps
- CoinGecko, CoinMarketCap, Coinbase, Binance, Kraken, TradingView
- Or just search “BTC USD” on Google

APIs / command-line (returns USD price)
- CoinGecko (no API key):
  curl -s "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=usd" | jq -r '.bitcoin.usd'
- Coinbase:
  curl -s "https://api.coinbase.com/v2/prices/spot?currency=USD" | jq -r '.data.amount'
- Binance:
  curl -s "https://api.binance.com/api/v3/ticker/price?symbol=BTCUSDT" | jq -r '.price'

Python example (CoinGecko):
- pip install requests
- script:
  import requests
  r = requests.get("https://api.coingecko.com/api/v3/simple/price", params={"ids":"bitcoin","vs_currencies":"usd"})
  print(r.json()["bitcoin"]["usd"])

If you want, tell me which source you prefer and I can provide a full script or instructions to set up price alerts or an automatic checker.
