Complete US macro data snapshot: Fed rate, Treasury yields, yield curve, balance sheet, FOMC schedule, CPI, fiscal data (debt, GDP, funding deadlines)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://treasury-pulse-production.up.railway.app/entrypoints/snapshot/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
US fiscal data: total debt, debt held by public, GDP, debt-to-GDP ratio, interest on debt, next funding deadline
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://treasury-pulse-production.up.railway.app/entrypoints/fiscal/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Single Treasury yield lookup (2Y, 5Y, 10Y, 30Y)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"tenor": {
"type": "string",
"enum": [
"2Y",
"5Y",
"10Y",
"30Y"
]
}
},
"required": [
"tenor"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://treasury-pulse-production.up.railway.app/entrypoints/yield/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"tenor": "2Y"
}
}
'