Getting Started

This guide will help you make your first API request to MarketPulse. You'll be streaming market data in under 5 minutes.

1

Create an Account

Review the plan that fits your rollout. Start with the developer tier to explore payloads and docs, then move to production access when your product is ready for live traffic.

2

Get Your API Token

Once your account is created, generate an API token from your dashboard. Keep this token secure because it controls access to your account quota and market streams.

# Your token will look like:

mp_live_aBcDeFgHiJkLmNoPqRsTuVwXyZ123456

3

Make Your First Request

Use the playground on the right to test the API with your token. Or use curl to make a request from your terminal:

curl -X GET "https://api.marketpulse.io/v1/quotes/latest?symbols=EUR/USD" \

-H "Authorization: Bearer YOUR_API_TOKEN"

Try It Out

Use a browser-held token and make your first request without leaving the docs.

GET/v1/quotes/latest

Use a token from your dashboard or paste a temporary test token. Authentication

Response

// Response will appear here after sending a request

Next Steps

Now that you've made your first request, continue into authentication, quotes, and WebSocket delivery.