Skip to Content

Macroeconomic Indicators

List macroeconomic indicators available through Longbridge, optionally filtered by country.

CLI
# List all indicators
longbridge macrodata
# Filter by US indicators
longbridge macrodata --country US

Parameters

SDK method parameters.

NameTypeRequiredDescription
countryMacroeconomicCountryNOFilter by country. Omit for all countries.
keywordstringNOFuzzy search by indicator name (case-insensitive)
offsetintNOPagination offset. Default: 0
limitintNOMax records per page. Default: 100, max: 1000

MacroeconomicCountry

ValueCountry
HKHong Kong SAR
CNChina (Mainland)
USUnited States
EUEuro Zone
JPJapan
SGSingapore

Request Example

Response

Response Example

json
{
  "count": 619,
  "list": [
    {
      "indicator_code": "61744",
      "country": "US",
      "name": "Non-Farm Payroll",
      "periodicity": "Monthly",
      "describe": "Employment situation report...",
      "importance": 3
    }
  ]
}

Response Status

StatusDescriptionSchema
200SuccessMacroeconomicIndicatorListResponse
400Bad requestNone

Schemas

MacroeconomicIndicatorListResponse

NameTypeRequiredDescription
listMacroeconomicIndicator[]trueIndicator list
countinttrueTotal number of matching indicators

MacroeconomicIndicator

NameTypeRequiredDescription
indicator_codestringtrueIndicator code (use as input to macroeconomic)
countrystringtrueCountry name
namestringtrueIndicator name
periodicitystringtrueRelease periodicity (e.g. Monthly, Quarterly)
describestringtrueIndicator description
importanceinttrueImportance level (1 = Low, 2 = Medium, 3 = High)