Free FX overview - supported currencies and sample rates (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://fx-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Convert amount between currencies (live ECB rates)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"from": {
"type": "string",
"minLength": 3,
"maxLength": 3,
"description": "Source currency code (e.g., USD)"
},
"to": {
"type": "string",
"minLength": 3,
"maxLength": 3,
"description": "Target currency code (e.g., EUR)"
},
"amount": {
"type": "number",
"exclusiveMinimum": 0,
"description": "Amount to convert"
}
},
"required": [
"from",
"to",
"amount"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://fx-intel-production.up.railway.app/entrypoints/convert/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"from": "<Source currency code (e.g., USD)>",
"to": "<Target currency code (e.g., EUR)>",
"amount": 0
}
}
'
Get current exchange rates for a base currency
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"base": {
"default": "USD",
"description": "Base currency code",
"type": "string",
"minLength": 3,
"maxLength": 3
},
"symbols": {
"description": "Comma-separated target currencies (e.g., EUR,GBP,JPY)",
"type": "string"
}
},
"required": [
"base"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://fx-intel-production.up.railway.app/entrypoints/rates/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"base": "<Base currency code>"
}
}
'
Get historical exchange rate for a specific date
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"date": {
"type": "string",
"description": "Date in YYYY-MM-DD format"
},
"base": {
"default": "USD",
"description": "Base currency",
"type": "string",
"minLength": 3,
"maxLength": 3
},
"symbols": {
"description": "Comma-separated currencies",
"type": "string"
}
},
"required": [
"date",
"base"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://fx-intel-production.up.railway.app/entrypoints/historical/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"date": "<Date in YYYY-MM-DD format>",
"base": "<Base currency>"
}
}
'
Get historical rates over a date range (for volatility/trend analysis)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"startDate": {
"type": "string",
"description": "Start date (YYYY-MM-DD)"
},
"endDate": {
"type": "string",
"description": "End date (YYYY-MM-DD)"
},
"base": {
"default": "USD",
"description": "Base currency",
"type": "string",
"minLength": 3,
"maxLength": 3
},
"symbols": {
"type": "string",
"description": "Comma-separated currencies (e.g., EUR,GBP)"
}
},
"required": [
"startDate",
"endDate",
"base",
"symbols"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://fx-intel-production.up.railway.app/entrypoints/timeseries/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"startDate": "<Start date (YYYY-MM-DD)>",
"endDate": "<End date (YYYY-MM-DD)>",
"base": "<Base currency>",
"symbols": "<Comma-separated currencies (e.g., EUR,GBP)>"
}
}
'
Comprehensive FX report - current rates, 30-day trends, volatility for major pairs
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"base": {
"default": "USD",
"description": "Base currency",
"type": "string",
"minLength": 3,
"maxLength": 3
}
},
"required": [
"base"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://fx-intel-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"base": "<Base currency>"
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://fx-intel-production.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'
analytics-transactions
Invoke
Recent payment transactions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
},
"limit": {
"default": 50,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://fx-intel-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Export payment data as CSV
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://fx-intel-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'