> ## 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

> Welcome to Finvera's developer documentation. Our infrastructure is designed for high-performance financial data processing, utilizing modern technologies to ensure scalability, reliability, and speed.

<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>

### **Infrastructure**

Finvera's backend is built on a robust technology stack:

* **Kubernetes**: Ensures seamless container orchestration for efficient scaling and deployment.
* **Golang**: Provides high-performance API endpoints with low latency.
* **Kafka**: Handles real-time data streaming and event-driven processing.
* **PostgreSQL**: Primary relational database for structured data storage.
* **Other Databases**:
  * **ClickHouse**: Optimized for fast analytical queries on large datasets.
  * **Elasticsearch**: Used for search indexing and quick retrieval of textual data.
  * **Redis**: In-memory caching for rapid response times.

## Data Delivery Mechanisms

Finvera supports multiple data access methods to fit various use cases:

<CardGroup cols="2">
  <Card title="REST API" icon="chart-mixed" href="https://docs.finvera.ai/api-reference/introduction">
    * Standard HTTPS endpoints for structured data retrieval.
  </Card>

  <Card title="Websocket Streaming" icon="signal-stream" href="https://docs.finvera.ai/ws-reference/introduction">
    Real-time data feeds for low-latency applications.
  </Card>

  <Card title="Bulk Data Delivery" icon="screwdriver-wrench" href="#">
    Downloadable datasets via secure S3 or FTP.
  </Card>

  <Card title="Webhooks" icon="webhook" href="#">
    Push-based data delivery to your endpoint.
  </Card>
</CardGroup>
