Documentation

SDKs & Language Examples

REST is plain HTTP + JSON. Below are recommended patterns for Python, Node, and WebSocket clients.

Python

Python: requests/httpx with X-API-Key; load data into pandas. See the Python guide.

JavaScript / Node

Browser/Node fetch works; CORS is for same-origin BFF only. Keep keys on the server in production.

WebSocket clients

Use ws or native WebSocket; send subscribe JSON; implement heartbeat, backoff reconnect, and full resubscribe.

Packaging tips

Centralize Symbol models, Base URL, and Key injection; put retry/limit logic in middleware.

Examples

Node streaming: /guides/nodejs-websocket-quotes; browser debug: /tools/ws-debugger.