Free overview - list all monitored APIs and their current status
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api-health-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Check health of a specific API - returns status, latency, and HTTP code
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"api": {
"type": "string",
"description": "API ID to check (e.g., coingecko, defillama, github)"
}
},
"required": [
"api"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api-health-intel-production.up.railway.app/entrypoints/check/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"api": "<API ID to check (e.g., coingecko, defillama, github)>"
}
}
'
Check health of multiple APIs at once
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"apis": {
"minItems": 1,
"maxItems": 12,
"type": "array",
"items": {
"type": "string"
},
"description": "Array of API IDs to check"
}
},
"required": [
"apis"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api-health-intel-production.up.railway.app/entrypoints/batch/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"apis": [
"string"
]
}
}
'
Check health of all APIs in a category (crypto, weather, sports, etc.)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "Category to check (crypto, defi, weather, geo, sports, dev, finance, reference, news, misc)"
}
},
"required": [
"category"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api-health-intel-production.up.railway.app/entrypoints/category/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"category": "<Category to check (crypto, defi, weather, geo, sports, dev, finance, reference, news, misc)>"
}
}
'
Compare latency across APIs - find the fastest working API in a category
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"category": {
"description": "Filter by category",
"type": "string"
},
"sortBy": {
"default": "latency",
"type": "string",
"enum": [
"latency",
"status"
]
}
},
"required": [
"sortBy"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api-health-intel-production.up.railway.app/entrypoints/latency/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"sortBy": "latency"
}
}
'
Complete health report - all APIs with detailed status, recommendations, and summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api-health-intel-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
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://api-health-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://api-health-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://api-health-intel-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'