WSS Documentation
Streaming Introduction
Real-time transcripts via WebSocket.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Real-time transcripts via WebSocket.
wss://api.finvera.news
wss://api.finvera.news?apikey=yourApiKeyHere
{ "action": "ping" }
{ "action": "echo", "data": "Hello, World!" }
{ "action": "subscribe", "symbol": "AAPL" }
{ "action": "subscribe", "symbol": "*" }
{ "action": "subscribed" }
| Action | Description | Example Request |
|---|---|---|
| list | Retrieve available transcripts | { "action": "list" } |
| subscribe | Subscribe to a specific transcript | { "action": "subscribe", "symbol": "AAPL" } |
| subscribe (all) | Subscribe to all available transcripts | { "action": "subscribe", "symbol": "*" } |
| subscribed | Get a list of active subscriptions | { "action": "subscribed" } |
| unsubscribe | Unsubscribe from a specific transcript | { "action": "unsubscribe", "symbol": "AAPL" } |
| unsubscribe (all) | Unsubscribe from all transcripts | { "action": "unsubscribe", "symbol": "*" } |
| echo | Test the connection | { "action": "echo", "message": "test" } |
| ping | Maintain an active WebSocket session | { "action": "ping" } |