Free overview of key US economic indicators - try before you buy
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://econ-indicators-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Detailed CPI inflation data including food, energy, and core CPI
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"category": {
"default": "all",
"type": "string",
"enum": [
"all",
"food",
"energy",
"core"
]
}
},
"required": [
"category"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://econ-indicators-production.up.railway.app/entrypoints/inflation/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"category": "all"
}
}
'
US unemployment rate time series with historical data
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"months": {
"default": 12,
"type": "number",
"minimum": 1,
"maximum": 36
}
},
"required": [
"months"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://econ-indicators-production.up.railway.app/entrypoints/unemployment/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"months": 1
}
}
'
GDP data for any country from World Bank
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"country": {
"type": "string",
"minLength": 2,
"maxLength": 2,
"description": "ISO 3166-1 alpha-2 country code (US, GB, DE, JP, CN, etc.)"
},
"years": {
"default": 5,
"type": "number",
"minimum": 1,
"maximum": 20
}
},
"required": [
"country",
"years"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://econ-indicators-production.up.railway.app/entrypoints/gdp/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"country": "<ISO 3166-1 alpha-2 country code (US, GB, DE, JP, CN, etc.)>",
"years": 1
}
}
'
Compare economic indicators across multiple countries
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"countries": {
"minItems": 2,
"maxItems": 5,
"type": "array",
"items": {
"type": "string",
"minLength": 2,
"maxLength": 2
},
"description": "Array of ISO country codes"
},
"indicator": {
"default": "gdp",
"type": "string",
"enum": [
"gdp",
"inflation",
"unemployment",
"population"
]
}
},
"required": [
"countries",
"indicator"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://econ-indicators-production.up.railway.app/entrypoints/compare/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"countries": [
"string"
],
"indicator": "gdp"
}
}
'
Comprehensive economic report combining BLS and World Bank data for a country
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"country": {
"default": "US",
"description": "ISO country code",
"type": "string",
"minLength": 2,
"maxLength": 2
}
},
"required": [
"country"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://econ-indicators-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"country": "<ISO country code>"
}
}
'