curl -X GET "https://api.medstrato.com/v1/signals?source=fda&impact=high&per_page=10" \
-H "Authorization: Bearer sk_live_your_api_key"
const signals = await medstrato.signals.list({
source: 'fda',
impact: 'high',
per_page: 10
});
signals = medstrato.signals.list(
source='fda',
impact='high',
per_page=10
)
{
"data": [
{
"id": "sig_abc123",
"title": "FDA Issues Updated Guidance on AI/ML-Based Medical Devices",
"url": "https://www.fda.gov/medical-devices/...",
"source": {
"name": "FDA",
"country": "US",
"region": "North America"
},
"ai_summary": "The FDA has released updated guidance clarifying the regulatory pathway for AI/ML-based medical devices, emphasizing the importance of continuous learning algorithms and predetermined change control plans.",
"impact": {
"level": "high",
"score": 85,
"categories": ["regulatory", "ai_ml", "software"]
},
"sentiment": "neutral",
"product_relevance": [
{
"product_id": "prod_xyz789",
"product_name": "CardioAI Diagnostic System",
"relevance_type": "direct",
"relevance_score": 0.92
}
],
"is_read": false,
"is_bookmarked": false,
"published_at": "2024-01-18T16:00:00Z",
"fetched_at": "2024-01-18T18:30:00Z"
}
],
"meta": {
"page": 1,
"per_page": 10,
"total": 23,
"unread_count": 8
}
}
Signals
List Signals
Retrieve regulatory and industry signals with AI-powered analysis.
GET
/
v1
/
signals
curl -X GET "https://api.medstrato.com/v1/signals?source=fda&impact=high&per_page=10" \
-H "Authorization: Bearer sk_live_your_api_key"
const signals = await medstrato.signals.list({
source: 'fda',
impact: 'high',
per_page: 10
});
signals = medstrato.signals.list(
source='fda',
impact='high',
per_page=10
)
{
"data": [
{
"id": "sig_abc123",
"title": "FDA Issues Updated Guidance on AI/ML-Based Medical Devices",
"url": "https://www.fda.gov/medical-devices/...",
"source": {
"name": "FDA",
"country": "US",
"region": "North America"
},
"ai_summary": "The FDA has released updated guidance clarifying the regulatory pathway for AI/ML-based medical devices, emphasizing the importance of continuous learning algorithms and predetermined change control plans.",
"impact": {
"level": "high",
"score": 85,
"categories": ["regulatory", "ai_ml", "software"]
},
"sentiment": "neutral",
"product_relevance": [
{
"product_id": "prod_xyz789",
"product_name": "CardioAI Diagnostic System",
"relevance_type": "direct",
"relevance_score": 0.92
}
],
"is_read": false,
"is_bookmarked": false,
"published_at": "2024-01-18T16:00:00Z",
"fetched_at": "2024-01-18T18:30:00Z"
}
],
"meta": {
"page": 1,
"per_page": 10,
"total": 23,
"unread_count": 8
}
}
Query Parameters
Page number
Results per page (max 100)
Filter by source. Options:
fda, ema, nmpa, pmda, tga, health_canada, mhra, industryFilter by impact level. Options:
critical, high, medium, lowFilter by sentiment. Options:
positive, neutral, negativeFilter signals relevant to a specific product
Filter bookmarked signals only
Filter by read/unread status
Full-text search in title and content
Filter signals published after this date (ISO 8601)
Response
Show Signal object
Show Signal object
Unique identifier
Signal title
Source URL
Source details (name, country, region)
Full content text
AI-generated summary
Sentiment (positive, neutral, negative)
Relevant products with relevance type
Read status
Bookmark status
Publication timestamp
Fetch timestamp
curl -X GET "https://api.medstrato.com/v1/signals?source=fda&impact=high&per_page=10" \
-H "Authorization: Bearer sk_live_your_api_key"
const signals = await medstrato.signals.list({
source: 'fda',
impact: 'high',
per_page: 10
});
signals = medstrato.signals.list(
source='fda',
impact='high',
per_page=10
)
{
"data": [
{
"id": "sig_abc123",
"title": "FDA Issues Updated Guidance on AI/ML-Based Medical Devices",
"url": "https://www.fda.gov/medical-devices/...",
"source": {
"name": "FDA",
"country": "US",
"region": "North America"
},
"ai_summary": "The FDA has released updated guidance clarifying the regulatory pathway for AI/ML-based medical devices, emphasizing the importance of continuous learning algorithms and predetermined change control plans.",
"impact": {
"level": "high",
"score": 85,
"categories": ["regulatory", "ai_ml", "software"]
},
"sentiment": "neutral",
"product_relevance": [
{
"product_id": "prod_xyz789",
"product_name": "CardioAI Diagnostic System",
"relevance_type": "direct",
"relevance_score": 0.92
}
],
"is_read": false,
"is_bookmarked": false,
"published_at": "2024-01-18T16:00:00Z",
"fetched_at": "2024-01-18T18:30:00Z"
}
],
"meta": {
"page": 1,
"per_page": 10,
"total": 23,
"unread_count": 8
}
}
⌘I