Access real-time press releases from major wire services with our simple REST API. Get the news before everyone else.
https://api.rtpr.ioInclude your API key in the request header:
X-API-Key: YOUR_API_KEY60 requests per minute
limitoptionalNumber of articles to return (default: 20, max: 100)
{
"count": 20,
"articles": [
{
"ticker": "AAPL",
"title": "Apple Announces Q4 Results",
"author": "Business Wire",
"created": "Mon, 28 Jul 2025 16:30:00 -0400",
"article_body": "Apple Inc. announced financial results for its fiscal fourth quarter ended September 30, 2025. The company posted quarterly revenue of $89.5 billion, up 6% year over year..."
}
]
}const response = await fetch('https://api.rtpr.io/articles?limit=10', {
headers: {
'X-API-Key': 'YOUR_API_KEY'
}
});
const data = await response.json();
console.log('Found ' + data.count + ' articles');
data.articles.forEach(article => {
console.log(article.ticker + ': ' + article.title);
});💡 JavaScript Notes:
tickerrequiredStock ticker symbol (e.g., AAPL, TSLA, MSFT)
{
"ticker": "AAPL",
"date": "Mon, 28 Jul 2025",
"count": 3,
"articles": [
{
"ticker": "AAPL",
"title": "Apple Announces Q4 Results",
"author": "Business Wire",
"created": "Mon, 28 Jul 2025 16:30:00 -0400",
"article_body": "Apple Inc. announced financial results for its fiscal fourth quarter ended September 30, 2025. The company posted quarterly revenue of $89.5 billion, up 6% year over year..."
}
]
}const ticker = 'AAPL';
const response = await fetch('https://api.rtpr.io/article?ticker=' + ticker, {
headers: {
'X-API-Key': 'YOUR_API_KEY'
}
});
const data = await response.json();
if (data.count > 0) {
console.log('Found ' + data.count + ' articles for ' + data.ticker + ' today');
data.articles.forEach(article => {
console.log('📰 ' + article.title);
console.log('🕒 ' + article.created);
console.log('✍️ ' + article.author);
console.log('---');
});
} else {
console.log('No articles found for ' + ticker + ' today');
}💡 JavaScript Notes:
Missing required parameters (e.g., ticker parameter for /article)
Invalid or missing API key
Rate limit exceeded (60 requests per minute)
Server error - please try again or contact support