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

# Dolva API: Voice Intelligence Platform for Developers

> Dolva is a REST API that extracts cognitive and emotional signals from audio. Learn what you can build and how the API is structured.

Dolva is a REST API that analyzes audio recordings and returns structured signals about the speaker's cognitive state and emotional profile. Whether you're building mental wellness apps, conversation intelligence tools, or clinical monitoring solutions, Dolva gives you a simple HTTP interface backed by purpose-built audio ML models.

## What Dolva Does

You upload an audio file — a short voice clip, a conversation snippet, or a longer recording — and Dolva returns JSON containing signal data extracted from the audio. Two analysis types are available:

<CardGroup cols={2}>
  <Card title="Cognitive Analysis" icon="brain" href="/concepts/cognitive-analysis">
    Detect signals related to cognitive load, clarity, and processing patterns from speech.
  </Card>

  <Card title="Emotion Analysis" icon="face-smile" href="/concepts/emotion-analysis">
    Surface emotional states and valence from the acoustic properties of voice recordings.
  </Card>
</CardGroup>

## API Overview

The Dolva API is a JSON REST API hosted at `https://api.dolva.ai`. All analysis endpoints require a Bearer token for authentication.

| Property        | Value                      |
| --------------- | -------------------------- |
| Base URL        | `https://api.dolva.ai`     |
| API Version     | `v1`                       |
| Auth            | Bearer token (HTTP header) |
| Upload format   | `multipart/form-data`      |
| Response format | `application/json`         |

## Key Endpoints

| Method | Path                    | Description                          |
| ------ | ----------------------- | ------------------------------------ |
| `POST` | `/v1/analyze/cognitive` | Analyze cognitive signals from audio |
| `POST` | `/v1/analyze/emotion`   | Analyze emotional signals from audio |
| `GET`  | `/health`               | Check API availability               |

## Next Steps

<CardGroup cols={2}>
  <Card title="Quick Start" icon="rocket" href="/quickstart">
    Make your first API call in minutes.
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    Learn how to use your Bearer token.
  </Card>
</CardGroup>
