PulseMarkets Documentation
Welcome to the PulseMarkets documentation. Learn how to integrate real-time forex data into your applications.
Authentication
Learn how to authenticate your API requests using API keys.
REST API
Complete reference for all REST API endpoints.
WebSocket API
Real-time streaming data via WebSocket connections.
Historical Data
Access historical OHLCV data for backtesting.
Quick Start
Get started with PulseMarkets in just a few steps:
1. Get Your API Keys
Sign up for an account and generate your API credentials from the dashboard.
2. Make Your First Request
bash
curl -X GET "https://api.pulse-markets.com/v1/quotes/EUR/USD" \
-H "X-API-Key: fx_your_api_key" \
-H "X-API-Secret: fxs_your_secret"
3. Parse the Response
json
{
"success": true,
"data": {
"symbol": "EUR/USD",
"bid": 1.08542,
"ask": 1.08545,
"spread": 0.00003,
"timestamp": "2025-01-15T14:30:00.000Z"
}
}
Base URL
All API requests should be made to:
https://api.pulse-markets.com/v1
Support
Need help? Contact our support team at support@pulse-markets.com or check the API Status page.