> ## Documentation Index
> Fetch the complete documentation index at: https://docs.finvera.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> A brief introduction to real-time data Websockets. This guide will help you get started with streaming, enabling you to subscribe to continuous updates on Conference Call Transcripts and other datasets

<div
  style={{
background: "#222222",
padding: "32px",
borderRadius: "16px",
textAlign: "center",
color: "#fff",
boxShadow: "0 8px 20px rgba(0,0,0,0.3)",
margin: "16px auto",
class:"w-full"
}}
>
  <div
    style={{
    fontSize: "1.8rem",
    fontWeight: "700",
    margin: "0 0 12px 0",
    display: "flex",
    alignItems: "center",
    color: "white",
    justifyContent: "center",
    gap: "0.5rem"
}}
  >
    <span>Get Started with Finvera</span>
  </div>

  <p style={{ fontSize: "1.05rem", margin: "0 0 20px 0", color: "#d1d5db" }}>
    Create your free trial API key to start exploring our financial datasets.
  </p>

  <a href="https://dashboard.finvera.ai/sign-up" target="_blank">
    <button
      style={{
        backgroundColor: "#fff",
        color: "#000",
        padding: "14px 28px",
        borderRadius: "10px",
        fontWeight: "700",
        fontSize: "1.05rem",
        cursor: "pointer",
        border: "none",
        transition: "all 0.2s ease-in-out"
    }}
      onMouseOver={(e) => { e.currentTarget.style.backgroundColor = "#f3f4f6"; }}
      onMouseOut={(e) => { e.currentTarget.style.backgroundColor = "#fff"; }}
    >
      Open Dashboard →
    </button>
  </a>
</div>

## WebSocket Endpoint

All WebSocket connections can be established using the following endpoint:

```json theme={null}
wss://api.finvera.news
```

## Authentication

The WebSocket API requires apikey authentication. When initiating a WebSocket connection, include your API token in the connection URL as a query parameter. Include [your API key](https://dashboard.finvera.news/dashboard/keys) in the apikey query param in the format:

```json theme={null}
apikey: <token>.
```

## Subscribing to Streams

Once connected, you can subscribe to specific data streams based on your requirements, such as stock quotes, trade data, or news updates. Each subscription requires a unique identifier and specific parameters depending on the data type.

### Example Subscription Message

To subscribe to a live stock quote stream, send a JSON message formatted as follows:

```json theme={null}
{
  "action": "subscribe",
  "symbol": "AAPL",
  "type": "quote"
}
```

***

We hope this guide helps you get started with our Websockets. If you have any questions, please don't hesitate to reach
out to our support team.
