Free overview of recent FDA safety activity - try before you buy. Shows recent recalls across drugs, food, and devices.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://loyal-mercy-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Search drug adverse event reports. Find safety issues, side effects, and patient outcomes for specific drugs.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"drug": {
"type": "string",
"description": "Drug name to search for"
},
"limit": {
"default": 10,
"description": "Number of results (1-100)",
"type": "number"
}
},
"required": [
"drug",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://loyal-mercy-production.up.railway.app/entrypoints/drug-events/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"drug": "<Drug name to search for>",
"limit": 0
}
}
'
Search drug recall enforcement actions. Get recall reasons, classifications, and affected products.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"description": "Search term (drug name, company, etc.)",
"type": "string"
},
"status": {
"description": "Recall status filter",
"type": "string",
"enum": [
"Ongoing",
"Terminated",
"Pending",
"Completed"
]
},
"limit": {
"default": 20,
"description": "Number of results (1-100)",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://loyal-mercy-production.up.railway.app/entrypoints/drug-recalls/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Search food recall enforcement actions. Find contamination issues, allergen alerts, and affected food products.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"description": "Search term (product, company, etc.)",
"type": "string"
},
"classification": {
"description": "Recall class (I=most serious)",
"type": "string",
"enum": [
"Class I",
"Class II",
"Class III"
]
},
"limit": {
"default": 20,
"description": "Number of results (1-100)",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://loyal-mercy-production.up.railway.app/entrypoints/food-recalls/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Search medical device recalls. Get root cause analysis, affected device codes, and corrective actions.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"description": "Search term (device type, manufacturer, etc.)",
"type": "string"
},
"limit": {
"default": 20,
"description": "Number of results (1-100)",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://loyal-mercy-production.up.railway.app/entrypoints/device-recalls/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Comprehensive safety report for a drug - combines adverse events, recalls, and enforcement data in one call.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"drug": {
"type": "string",
"description": "Drug name for comprehensive safety analysis"
}
},
"required": [
"drug"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://loyal-mercy-production.up.railway.app/entrypoints/safety-report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"drug": "<Drug name for comprehensive safety analysis>"
}
}
'
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://loyal-mercy-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://loyal-mercy-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://loyal-mercy-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'