Integrate PeartoFinance's incredibly rich, low-latency market data, news, and alternative data straight into your applications.
RESTful JSON endpoints designed for simplicity and immediate implementation.
Access quotes, historical news, economic calendars, and even live sports scores.
Robust backend ready to handle request volumes globally across any timezone.
All API requests require your active API key to be passed via the HTTP Authorization header as a Bearer token.
curl -X GET "https://peartofinance.com/api/v1/public/news/latest" \ -H "Authorization: Bearer YOUR_API_KEY_HERE"
/market/quotes/{symbol}Get the latest real-time or delayed quote for any supported stock or ETF symbol.
The ticker symbol (e.g., AAPL, TSLA)
{
"symbol": "AAPL",
"price": 185.92,
"change": 2.15,
"changePercent": 1.17,
"volume": 52145800,
"timestamp": "2026-02-20T10:00:00Z"
}/crypto/quotes/{symbol}Get the latest price, 24h change, and volume for a cryptocurrency pair.
The crypto symbol (e.g., BTC, ETH)
{
"symbol": "BTC",
"price": 54320.50,
"change24h": -1.25,
"volume24h": 34500000000,
"timestamp": "2026-02-20T10:00:00Z"
}/news/latestFetch the 20 most recent high-impact financial news articles globally.
No path or query parameters required.
[
{
"id": 796,
"title": "Analysts Remain Bullish on Tech Giants",
"source": "Financial Post",
"category": "technology",
"publishedAt": "2026-02-20T09:15:00Z",
"relatedSymbol": "AAPL",
"link": "https://..."
}
]/forex/ratesGet real-time exchange rates for major and minor currency pairs.
No path or query parameters required.
[
{
"pair": "EUR/USD",
"baseCurrency": "EUR",
"targetCurrency": "USD",
"rate": 1.0850,
"change": 0.0012,
"changePercent": 0.11
}
]/commodities/latestGet the latest spot prices for Gold, Silver, Oil, and other major commodities.
No path or query parameters required.
[
{
"symbol": "GC=F",
"name": "Gold",
"price": 2045.30,
"change": 5.10,
"unit": "USD/oz"
}
]/market/economic-eventsRetrieve a list of upcoming high-impact and medium-impact global economic events.
No path or query parameters required.
[
{
"id": "event-123",
"title": "US Nonfarm Payrolls",
"country": "US",
"eventDate": "2026-03-06T13:30:00Z",
"importance": "high"
}
]/sports/eventsAccess scores, schedules, and live status of major sporting events globally.
No path or query parameters required.
[
{
"id": 105,
"name": "Lakers vs Warriors",
"sportType": "basketball",
"status": "scheduled",
"eventDate": "2026-02-21T03:00:00Z"
}
]