Skip to main content
AiCorner LogoAiCorner
ToolsSkillsMCP ServersAPIsDocumentation
0
AiCorner LogoAiCorner

The modern standard directory for LLM capabilities, MCP servers, developer APIs, and autonomous agent tools.

searchdescriptionmail

Explore Catalog

  • All Tools
  • Agent Skills
  • MCP Servers
  • Developer APIs
  • Free Tools
  • Compare Tools

Navigation

  • Browse Categories
  • Documentation
  • FAQs
  • Search Catalog

Support & Legal

  • Contact Us
  • Privacy Policy
  • Terms of Service
  • Sitemap

© 2026 AiCorner. All rights reserved.

APIschevron_rightFinancechevron_rightFinPulse Realtime
dataset

FinPulse Realtime

verifiedVerified API
keyGet API Key

Overview

Real-time market data delivery for global equities, FX, and crypto. Stream quotes and trades over WebSockets or pull snapshots over REST with sub-15ms delivery and full historical replay. Built for trading dashboards, algorithmic signals, and portfolio analytics.

speedSub-15ms Delivery

Quote and trade streams delivered in real time to edge regions.

candlestick_chartGlobal Coverage

Equities, FX, and crypto tickers across 60+ exchanges.

replayHistorical Replay

Full-depth market replay for backtesting and audits.

Authentication

All requests require an OAuth 2.0 access token exchanged from your client credentials.

HTTP Header
Authorization: Bearer $ACCESS_TOKEN

Endpoints

MethodPathDescription
GET/v2/quotes/{symbol}Fetch the latest quote snapshot for a symbol.
GET/v2/trades/{symbol}Pull recent trades with venue and volume detail.
GET/v2/candles/{symbol}Retrieve OHLCV candles at any supported interval.
WS/v2/marketStream live quotes and trades over WebSocket.

Quick Start Example

curl -X GET "https://api.finpulse.io/v2/quotes/AAPL" \
  -H "Authorization: Bearer $ACCESS_TOKEN"

Parameters & Responses

Parameters

  • symbolREQUIRED
    Type: stringTicker symbol or currency pair (e.g. 'AAPL', 'BTC-USD').
  • intervalOPTIONAL
    Type: stringCandle interval: 1m, 5m, 15m, 1h, 1d.
  • limitOPTIONAL
    Type: integerMaximum number of records to return per request.

Response Example

JSON 200 OK
{
  "status": "success",
  "data": {
    "symbol": "AAPL",
    "price": 232.45,
    "change": 1.28,
    "changePercent": 0.55,
    "bid": 232.4,
    "ask": 232.5,
    "timestamp": "2026-08-01T15:30:00Z"
  },
  "usage": {
    "ms": 11
  }
}

Technical Specs

TransportWebSocket / REST
AuthOAUTH2
LicenseCommercial
Last Update3w ago

Resources

menu_bookFull API Documentationarrow_forwardcodeJavaScript / TypeScriptarrow_forwardcodePythonarrow_forwardcodeRustarrow_forwardhubOfficial Product Websitearrow_forward
shield

Security & Safety Note

OAuth 2.0 token rotation is enforced for all connections. WebSocket streams are authenticated per connection and rate-limited per token. Market data is delivered from read-only snapshots — your credentials never gain write or trading access.