Your agent half-remembers economic stats; this returns exact World Bank and US Census figures by place and year.
Economic and demographic statistics: World Bank development indicators (GDP, population, inflation, and thousands more) by country and year, plus US Census Bureau survey data by geography. World Bank data is licensed CC BY 4.0, credit "The World Bank: <dataset>". US Census data is US public domain.
List countries and aggregates with their World Bank codes and metadata.
Result page.
Results per page.
curl -X POST "https://skill.askfaro.com/skills/economic-data/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "List all countries with World Bank codes"
}
}'askfaro describe economic-data/worldbank_list_countries
Install pip install askfaro-cli, then askfaro auth login.
List available World Bank indicators and their codes.
Result page.
Results per page.
curl -X POST "https://skill.askfaro.com/skills/economic-data/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "List World Bank indicators"
}
}'askfaro describe economic-data/worldbank_list_indicators
Install pip install askfaro-cli, then askfaro auth login.
Get World Bank indicator values for a country over time.
Return the most recent N values instead of a date range.
Year or range, e.g. "2020" or "2000:2020".
Result page.
ISO country code (2 or 3 letter), or "all" for all countries.
Results per page.
World Bank indicator code, e.g. "NY.GDP.MKTP.CD".
curl -X POST "https://skill.askfaro.com/skills/economic-data/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Get Brazil's GDP for the last 10 years"
}
}'askfaro describe economic-data/worldbank_indicator
Install pip install askfaro-cli, then askfaro auth login.
Query US Census Bureau survey data for variables by geography.
Parent geography filter (e.g. "state:06").
Geography selector (e.g. "state:*", "county:*").
Comma-separated variables, including "NAME" (e.g. "NAME,B01001_001E").
Survey/vintage year.
Dataset path, e.g. "acs/acs5" or "dec/pl".
curl -X POST "https://skill.askfaro.com/skills/economic-data/run" \
-H "Authorization: Bearer faro_<your_key>" \
-H "Content-Type: application/json" \
-d '{
"intent": {
"prompt": "Get total population for all US states from ACS5 2022"
}
}'askfaro describe economic-data/census_data
Install pip install askfaro-cli, then askfaro auth login.