Loading market data...
P
Pearto
--°CLoading...
AI
Sign inSign up
Markets
Back to Dashboard

API Documentation

Integrate PeartoFinance's incredibly rich, low-latency market data, news, and alternative data straight into your applications.

Fast Integration

RESTful JSON endpoints designed for simplicity and immediate implementation.

Detailed Datasets

Access quotes, historical news, economic calendars, and even live sports scores.

Global Scale

Robust backend ready to handle request volumes globally across any timezone.

Authentication

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"

Available Endpoints

GET/market/quotes/{symbol}

Get the latest real-time or delayed quote for any supported stock or ETF symbol.

Parameters

  • symbolstringRequired

    The ticker symbol (e.g., AAPL, TSLA)

Example Response

{
  "symbol": "AAPL",
  "price": 185.92,
  "change": 2.15,
  "changePercent": 1.17,
  "volume": 52145800,
  "timestamp": "2026-02-20T10:00:00Z"
}
JSON
GET/crypto/quotes/{symbol}

Get the latest price, 24h change, and volume for a cryptocurrency pair.

Parameters

  • symbolstringRequired

    The crypto symbol (e.g., BTC, ETH)

Example Response

{
  "symbol": "BTC",
  "price": 54320.50,
  "change24h": -1.25,
  "volume24h": 34500000000,
  "timestamp": "2026-02-20T10:00:00Z"
}
JSON
GET/news/latest

Fetch the 20 most recent high-impact financial news articles globally.

Parameters

No path or query parameters required.

Example Response

[
  {
    "id": 796,
    "title": "Analysts Remain Bullish on Tech Giants",
    "source": "Financial Post",
    "category": "technology",
    "publishedAt": "2026-02-20T09:15:00Z",
    "relatedSymbol": "AAPL",
    "link": "https://..."
  }
]
JSON
GET/forex/rates

Get real-time exchange rates for major and minor currency pairs.

Parameters

No path or query parameters required.

Example Response

[
  {
    "pair": "EUR/USD",
    "baseCurrency": "EUR",
    "targetCurrency": "USD",
    "rate": 1.0850,
    "change": 0.0012,
    "changePercent": 0.11
  }
]
JSON
GET/commodities/latest

Get the latest spot prices for Gold, Silver, Oil, and other major commodities.

Parameters

No path or query parameters required.

Example Response

[
  {
    "symbol": "GC=F",
    "name": "Gold",
    "price": 2045.30,
    "change": 5.10,
    "unit": "USD/oz"
  }
]
JSON
GET/market/economic-events

Retrieve a list of upcoming high-impact and medium-impact global economic events.

Parameters

No path or query parameters required.

Example Response

[
  {
    "id": "event-123",
    "title": "US Nonfarm Payrolls",
    "country": "US",
    "eventDate": "2026-03-06T13:30:00Z",
    "importance": "high"
  }
]
JSON
GET/sports/events

Access scores, schedules, and live status of major sporting events globally.

Parameters

No path or query parameters required.

Example Response

[
  {
    "id": 105,
    "name": "Lakers vs Warriors",
    "sportType": "basketball",
    "status": "scheduled",
    "eventDate": "2026-02-21T03:00:00Z"
  }
]
JSON

Ready to start?

Generate Your API Key