Current Account Balance was last reported at -111 Mil. of $ as of January 1, 2014. That is up 27.30% from the prior reading of -87 Mil. of $. This indicator is reported Quarterly and seasonally adjusted, and is tracked under the Trade category. The next scheduled release is September 24, 2026.
| Date | Value (Mil. of $) |
|---|---|
| 2014 Q1 | -111 |
| 2013 Q4 | -87 |
| 2013 Q3 | -101 |
| 2013 Q2 | -106 |
| 2013 Q1 | -105 |
| 2012 Q4 | -106 |
| 2012 Q3 | -112 |
| 2012 Q2 | -119 |
| 2012 Q1 | -124 |
| 2011 Q4 | -112 |
| Date | Value (Mil. of $) |
|---|---|
| 2011 Q3 | -108 |
| 2011 Q2 | -121 |
| 2011 Q1 | -119 |
| 2010 Q4 | -102 |
| 2010 Q3 | -118 |
| 2010 Q2 | -115 |
| 2010 Q1 | -109 |
| 2009 Q4 | -103 |
| 2009 Q3 | -93 |
| 2009 Q2 | -88 |
Pull the full history of Current Account Balance into your own models, spreadsheets and apps with the
free Business Quant Economic Data API. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/economic?code=USCURRACCT&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USCURRACCT", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USCURRACCT&period=max&api_key=YOUR_API_KEY");
const data = await res.json();